Skip to main content

Reference type instance

Reference type instance:-

Example1:-

class Student
{
String name;
int rollNo;
String address;
Student t;                               //here t is reference of student as a instance variable
public static void main(String[]args)
{

Student s1=new Student();
System.out.println(s1.name);
System.out.println(s1.rollNo);
System.out.println(s1.address);
System.out.println(s1.t);
}
}

Output:-

C:\JAVATECH>javac Student.java
C:\JAVATECH>java Student
null
0
null
null

Example2:-

class Student
{
String name;
int rollNo;
String address;
Student t;
public static void main(String[]args)
{

Student s1=new Student();
System.out.println(s1.name);
System.out.println(s1.rollNo);
System.out.println(s1.address);
System.out.println(s1.t);
s1.t=s1;                                    //here address of object s1 is assign to reference variable t.
System.out.println(s1.t.name);
System.out.println(s1.t.rollNo);
System.out.println(s1.t.address);
System.out.println(s1.t);
}
}

Output:-

C:\JAVATECH>javac Student.java
C:\JAVATECH>java Student
null
0
null
null
null
0
null
Student@52e922

If we pass any reference variable which contains reference of object  to print or println method than output will be classname@Hexadecimal value like in the above output Student@52e922.

Example3:-

class Student
{
String name;
int rollNo;
String address;
Student t=new Student();   /*here each time object created whenever memory  available                        and assign to t.*/
public static void main(String[]args)
{

Student s1=new Student();
System.out.println(s1.name);
System.out.println(s1.rollNo);
System.out.println(s1.address);
}
}

Output:-

C:\JAVATECH>javac Student.java
C:\JAVATECH>java Student
at Student.<init>(Student.java:6)
at Student.<init>(Student.java:6)
at Student.<init>(Student.java:6)
at Student.<init>(Student.java:6)
at Student.<init>(Student.java:6)
at Student.<init>(Student.java:6)
………………………………………………
……………………………………………..

Example4:-

class Student
{
String name;
int rollNo;
String address;
static Student t=new Student();  //here only one time object created and assign to t.
public static void main(String[]args)
{

Student s1=new Student();
System.out.println(s1.name);
System.out.println(s1.rollNo);
System.out.println(s1.address);
System.out.println(s1.t);

}
}

Output:-

C:\JAVATECH>javac Student.java
C:\JAVATECH>java Student
null
0
null
Student@52e922

Example5:-

class Student
{
String name;
int rollNo;
String address;
 Student t;
}
class Test
{
public static void main(String[]args)
{

Student s1=new Student();
System.out.println(s1.name);
System.out.println(s1.rollNo);
System.out.println(s1.address);
System.out.println(s1.t);

}
}

Output:-

C:\JAVATECH>javac Test.java
C:\JAVATECH>java Test
null
0
null
null

Example6:-

class Student
{
String name;
int rollNo;
String address;
 Student t=new Student();
}
class Test
{
public static void main(String[]args)
{

Student s1=new Student();
System.out.println(s1.name);
System.out.println(s1.rollNo);
System.out.println(s1.address);
System.out.println(s1.t);

}
}

Output:-

C:\JAVATECH>javac Test.java
C:\JAVATECH>java Test
at Student.<init>(Student.java:6)
at Student.<init>(Student.java:6)
at Student.<init>(Student.java:6)
at Student.<init>(Student.java:6)
at Student.<init>(Student.java:6)
at Student.<init>(Student.java:6)
………………………………………………
……………………………………………..

Example7:-

class Student
{
String name;
int rollNo;
String address;
  static Student t=new Student();
}
class Test
{
public static void main(String[]args)
{

Student s1=new Student();
System.out.println(s1.name);
System.out.println(s1.rollNo);
System.out.println(s1.address);
System.out.println(s1.t);

}
}

Output:-

C:\JAVATECH>javac Test.java
C:\JAVATECH>java Test
null
0
null
null



















Comments

Popular posts from this blog

Regarding class files

Class files:- Regarding class file or dot class file also known as byte code of class, in a java programming language we can use any number of classes in our program. After compilation all classes convert into individual   .class   file. Example:- class A { } class B { } class C { } class Student { public static void main(String[]args) { System.out.println("Well-come to my java blog"); } } We can save above program to any   classname.java   or we can use any other   name.java,   there is no compulsion for java file name. But recommended to save by that class name which having main method. I saved the above file to   Student.java   name .   Before compilation my   C:\JAVATECH   folder contain only one java file. Student.java For  compilation. C:\JAVATECH>javac  Student.java After compilation   my   C:\JAVATECH   folder contains five files, on...

Inner classes

Inner Classes:- class inside class or interface called inner class or nested class. Advantage of inner classes is grouping multiple classes and interfaces into a single class. Another big advantage of inner class is that inner class can happily access all the data or variables of outer class directly. Types of Nested classes:- There are two types of nested classes static and non-static nested classes. (A)Non –static inner classes:- 1)     Member inner class 2)     Anonymous inner class 3)     Local inner class (B)Static nested class Example1:-Outer.java class Outer { class Inner { void disp() { System.out.println("Hello This is Inner class Method"); } } public static void main(String[]args) { Inner in=new Inner(); in.disp(); } } Output:- C:\JAVATECH>javac Outer.java Outer.java:12: error: non-static variable this cannot be referenced from a static context Inner in=new Inner(); ...

Inheritance-4

Example10:- class Student { Student() { System.out.println("This is super class Zero argument constructor"); } Student(String s) { System.out.println("This is super class One argument constructor"); } } class Test extends Student { Test() { super(null); System.out.println("This is sub class Zero argument constructor"); } public static void main(String[]args) { Test t=new Test(); } } Output:- C:\JAVATECH>javac Test.java C:\JAVATECH>java Test This is super class One argument constructor This is sub class Zero argument constructor Example11:- class Student { Student() { System.out.println("This is super class Zero argument constructor"); } Student(String s) { System.out.println("This is super class One argument constructor"); } } class Test extends Student { Test() { super(); super(null); System.out.println("This is su...