> JAVA default public or private?

JAVA default public or private?

Posted at: 2014-12-18 
You are talking about the access modifier for a class. There are 4 access modifiers available (public, protected, private, and none). A class with no access modifier is defaulted to what they call package level access. You can read about it here: http://docs.oracle.com/javase/tutorial/j...

It's public by default.

http://stackoverflow.com/questions/21549...

What is the default declaration type (I mean public/private, but didn't know the what the word for those keywords are) for classes in JAVA.

So if i omit the word public or private, what will it be?