Possible Duplicate:
package visibility
Java - The difference between class “ClassName” and public class “ClassName”
Basically is there any difference in these two modifiers of classes? Is there any difference in not having the public modifier?
public class MyClass {}
class MyClass {}