What is the difference between public and private in Java?
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.