forked from bayramcicek/comu2017java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
J4ClassObjects.java
42 lines (32 loc) · 1.38 KB
/
J4ClassObjects.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
package PackageJavaNesne;
/**
* Created by cicek on 2.10.2017 18:24
*/
public class J4ClassObjects {
public static void main(String[] args){ // main class
Sinif1 s1 = new Sinif1(); /* burada Display1 () methodu public yani genel olduğu için
main içinde yeni bir nesne oluşturup , oluşturduğumuz nesne
ile Display1 () methodunu çağırmak zorundayız */
s1.Display1();
System.out.println(" ");
////////////////////////////////////////////////////////////////////////////////////////////////////////
Sinif2.Display2(); /* Display2 () methodu static yani sabit/değişmez olduğu için
direkt ait olduğu sınıfı tanımlamak yeterlidir. */
Sinif2 s2 = new Sinif2(); /* Display2 () static olduğu için normal şekilde nesne
oluşturularak ta tanımlanabilir. */
s2.Display2();
System.out.println("\n--SUCCESS--");
}
}
/////////////////////////new class/////////////////////
class Sinif1 {
public void Display1(){
System.out.println(" Now you seeing Public Display1 () method ");
}
}
/////////////////////////new class//////////////////////
class Sinif2 {
static void Display2(){
System.out.println(" Now you seeing Public Display2 () method ");
}
}