0 votes
in JAVA by

What is the difference between public and private in Java?

1 Answer

0 votes
by

public and private are access modifiers in Java. A public member can be accessed from anywhere, while a private member can only be accessed within the same class.

...