Click here to watch in Youtube :
https://www.youtube.com/watch?v=H4wixwtXXiE&list=UUhwKlOVR041tngjerWxVccw
Employee.java
public class Employee { private String name; private int age; private Employee() { System.out.println("Inside Employee() constructor"); } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } }EmployeeDemoTest.java
public class EmployeeDemoTest { public static void main(String[] args) { Employee employeeObject1 = new Employee(); System.out.println("Name : " + employeeObject1.getName()); System.out.println("Age : " + employeeObject1.getAge()); } }
Exception in thread "main" java.lang.Error: Unresolved compilation problem: The constructor Employee() is not visible at EmployeeDemoTest.main(EmployeeDemoTest.java:7)
https://sites.google.com/site/javaee4321/java/ConstructorDemoPrivateApp.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/ConstructorDemoPrivateApp
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/2f20a20e875ab6e7de15adc0041c373263d61c3b/BasicJava/ConstructorDemoPrivateApp/?at=master
See also:
No comments:
Post a Comment