Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame
428 Bytes
class priaccessspecifier
{
private void display()
{
System.out.println("You are using private access specifier");
}
}
public class accessSpecifiers2 {
public static void main(String[] args) {
//private
System.out.println("Private Access Specifier");
priaccessspecifier obj = new priaccessspecifier();
//trying to access private method of another class
//obj.display();
}
}