Click here to watch in Youtube :
https://www.youtube.com/watch?v=jHuygXT2Vig&list=UUhwKlOVR041tngjerWxVccw
Click the below Image to Enlarge
Java Tutorial : Java using objects |
Java Tutorial : Java using objects |
Java Tutorial : Java using objects |
public class Employee { String name; int age; public Employee(String name, int age) { this.name = name; this.age = age; } public int getSalaryInfo() { return 30000; } }
public class EmployeeTest { public static void main(String[] args) { Employee johnReferenceVariable = new Employee("John", 25); System.out.println("name : "+ johnReferenceVariable.name ); System.out.println("age : "+ johnReferenceVariable.age ); int salary = johnReferenceVariable.getSalaryInfo(); System.out.println("salary : "+salary); } }
name : John age : 25 salary : 30000
https://sites.google.com/site/javaee4321/java/CreateAndUsingObjectDemoApp.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/CreateAndUsingObjectDemoApp
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/f95cef6f929a55d126484d6f51e7b129a718c586/BasicJava/CreateAndUsingObjectDemoApp/?at=master
See also:
No comments:
Post a Comment