Tuesday, December 30, 2014

Java Tutorial For Beginners 18 - Classes and Objects in Java













1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package lesson1;

public class Student {
 int id;
 String name;
 int age;

 public int getId() {
  return id;
 }
 public void setId(int id) {
  this.id = id;
 }
 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;
 }
}

public class MyClass {

 public static void main(String[] args) {
  Student mark = new Student();//mark -> object or instance
  
  mark.setId(1);
  mark.setName("Mark");
  mark.setAge(15);
  
  Student tom = new Student();//Tom -> object or instance
  
  tom.setId(1);
  tom.setName("Tom"); 
  tom.setAge(14);
  
  System.out.println(mark.getName() + " is "+ mark.getAge() + " years old");
  System.out.println(tom.getName() + " is "+ tom.getAge() + " years old");
 }

}












Searches related to Classes and Objects in java

classes and objects in java pdf

classes and objects in java ppt

classes and objects in c++

classes in java

classes and objects in java with realtime examples

methods in java

encapsulation in java

define class in java
IT Certification Category (English)640x480

Partner Sites

VideoToGifs.com

EasyOnlineConverter.com

SqliteTutorials.com


Top Online Courses From ProgrammingKnowledge

Python Course http://bit.ly/2vsuMaS
Java Coursehttp://bit.ly/2GEfQMf
Bash Coursehttp://bit.ly/2DBVF0C
Linux Coursehttp://bit.ly/2IXuil0
C Course http://bit.ly/2GQCiD1
C++ Coursehttp://bit.ly/2V4oEVJ
PHP Coursehttp://bit.ly/2XP71WH
Android Coursehttp://bit.ly/2UHih5H
C# Coursehttp://bit.ly/2Vr7HEl
JavaFx Coursehttp://bit.ly/2XMvZWA
NodeJs Coursehttp://bit.ly/2GPg7gA
Jenkins Course http://bit.ly/2Wd4l4W
Scala Coursehttp://bit.ly/2PysyA4
Bootstrap Coursehttp://bit.ly/2DFQ2yC
MongoDB Coursehttp://bit.ly/2LaCJfP
QT C++ GUI Coursehttp://bit.ly/2vwqHSZ