Declare Reference variable

Declare Reference variable

    class A
    {
      int a; //instance variable
      static int b; // static variable
      A ref;
      static A refs;
      public static void main(String[] args)
      {
        // statements followed here...
      }

}

My Question is that instance variable occupy space in memory when object is created. Static variable is class variable which is shared. I just want to ask if we declare Reference variable above then what does that mean. like we declared 'A ref' and 'static A refs'. How this is treated??

(Generally we used to declare reference variable in main method at the time of object creation, but here i am declaring reference variable in class not in the main, so what is the difference and second what is the use of static reference variable)

please explain with example??

View Answers









Related Tutorials/Questions & Answers:
Declare Reference variable
is shared. I just want to ask if we declare Reference variable above then what does...?? (Generally we used to declare reference variable in main method at the time...Declare Reference variable   class A { int a; //instance
Can we declare a static variable inside a method?
Can we declare a static variable inside a method?   Hi, Can we declare a static variable inside a method? thanks
Advertisements
cannot declare variable inside @interface or @protocol
cannot declare variable inside @interface or @protocol  When i declare variable inside the interface, it always send an error saying "cannot declare variable inside @interface or @protocol". Can anyone please tell me why
declare a variable that will store an array of 5 objects
declare a variable that will store an array of 5 objects  Q7. Give a declaration for a variable that will 'store' an array of 5 Card objects... you   Declare Array of 5 objects in the following way: int list[]=new
Use DECLARE Statement in Procedure
Use DECLARE Statement in Procedure       Use DECLARE Statement in Procedure is used to define variable and its data type. Understand with ExampleADS
Mysql Declare Procedure
Mysql Declare Procedure        Mysql Declare Procedure is used to define a local variable within a procedure. The local variable are used within the procedure. Understanding
reference
reference of student into person can do like this or any other alternative Student
PHP Call By Reference
PHP Call By Reference: In PHP we can pass reference of a variable, so that we can modify the variable's value inside another function and get the modified values from where we have sent. It is much like the call by reference, in which we
PHP Variable Outside Function
PHP Variable Outside Function In PHP Functions, a variable can be called either outside the function or inside the function. If we declare a variable within the function, it will not seen outside the function and if you declare
Creating a Local Variable in JSP
or variable we usually declare it inside the declaration tag. If we declare... consider a situation where we have to declare a variable as local, then we should...Creating a Local Variable in JSP     
Creating a Local Variable in JSP
Creating a Local Variable in JSP      In jsp when we have to create a method or variable we usually declare... to declare a variable as local, then we should declare the methods and variables
javascript where to declare variables
;script language="javascript"> // declare variable or do your calculation...javascript where to declare variables  javascript where to declare variables   Javascript variable always be declared inside script tag
Declare construct
Declare construct  hii, Define about declare construct?   hello,ADS_TO_REPLACE_1 Declare construct allows you to define execution... perform. These declare construct can be set in such a manner that all the code
PHP Variable variables
PHP Variables variable: Variables variable is a new kind of technique of using variables, in this technique we need to use more than one variable and we can... the use of variable variable both in general use as well as in OOP concept. ADS
PHP Variable Functions
PHP Variable Functions: Learn PHP Variable Function means that if a variable name has a format like this $var(), PHP will consider this as a variable function... to execute it. This variable function does not work with echo(), print(), unset
Version of reference>reference dependency
List of Version of reference>reference dependency
Referance variable - Java Interview Questions
Referance variable  by using which reference variable we declare instance variable as local variable in java   Hi friend,Local variables... variable and parameter. When the method is called, the parameter slots are initialized
STATIC VARIABLE DECLARATION
STATIC VARIABLE DECLARATION  why cannot the static variable declare inside the method
Use DECLARE Statement in Procedure
Use DECLARE Statement in Procedure       Use DECLARE Statement in Procedure is used to define variable and its data type. Understand with ExampleADS_TO_REPLACE_1
PHP Object Reference
Similarly in PHP a reference is an alias and an object variable does not contain... that the terms object and reference is interchangeable. Now we must know what is actually an object and what is a reference. Whenever an object is instantiated
Declare the Navigation Rules
Declare the Navigation Rules  How to declare the Navigation Rules for JSF
How to declare NSMatrix
How to declare NSMatrix  How to declare NSMatrix in XCode can anyone explain it with example
Java reference
Java reference  What is weak reference in Java
by value or by reference
by value or by reference  Are objects passed by value or by reference
ModuleNotFoundError: No module named 'declare'
ModuleNotFoundError: No module named 'declare'  Hi, My Python... 'declare' How to remove the ModuleNotFoundError: No module named 'declare... to install padas library. You can install declare python with following command
Instance variable in java
_TO_REPLACE_1 Here are the various example to declare variable as below: int...Instance variable in java In this section you will learn about Instance variable in java. In java all variable must be declared before they are used
Create Session Variable PHP
Create Session Variable PHP  hi, Write a program which shows the example of how to create session variable in PHP. Please suggest the reference... session Variable in PHP. May be this reference will solve your query. Thanks
Local Variable and Instant Variable
Local Variable and Instant Variable  difference between Local Variable and Instant Variable   Difference between local variable and instance variable Instance variable is declared within a class but not within
Access a variable local and globally
your variable globally then declare it in the appDelegate file and then make...Access a variable local and globally  how can we access a variable local and globel??   hello, if you want to access your variable
appdelegate reference
appdelegate reference  Hi, How to get the reference of appdelegate in my view controller class. Thanks.   Hello Friend, Following code example show how to get appdelegate reference anywhere in your iPhone/iPad
cross reference
cross reference   hi everbody as i got a problem and i have no idea the problem that i need to create a cross reference map for a Java source file... generation of the cross-reference map. Finally, the cross-reference map is output
Serialize the static variable
Serialize the static variable  hello, Can we serialize the static variable?   hiiADS_TO_REPLACE_1 Yes we can serialize the static variable. if u don't want to serialize, u need to declare the variable as transient
creating a global variable with php
creating a global variable with php  Is it possible to create a variable to declare as global in case of database connectivity?   Yes, if you want to have access of that variable anywhere in the program. See the example
Flex Variables
: #FFFFCC; } A variable is a reference to the value associated... is used to declare the variable. var myVar:int; Variable...; Declaration and assignment of the variable can be done simultaneously
How to declare array in Java?
How to declare array in Java?  Hi, How to declare array in Java? Thanks   Hi, Following is a code of declaration of String array: String[] javaTechnologies = new String[]{"Java", "JSP", "Servlet", "JPA"}; Example
Declare Cursors in SQL
Declare Cursors in SQL       Declare Cursors in SQL is used to define cursor and its... a example from 'Declare Cursors in SQL'. To grasp the example, we create a table
Artifacts of reference
List of Artifacts of reference maven depenency
Store Variable in Java
Store Variable in Java  How to store Variables in Java?   ... aDouble = 5.76; // Declare and initialize aDouble System.out.println...(aDouble); // Outputs 7.21 } }   Variable in Java
Pass by Reference - Java Beginners
by Reference?can u please explain with examples.is java supports Pass by reference...(i); display(i); } } Pass By Reference: It refers to pass an object variable to a method. Example: public class PassByRefernce{ public static
pointer to a reference
pointer to a reference  pointer to a reference in C++    #include <iostream> using namespace std; void foo1(int& x) { int* p = &x; *p = 123; } void foo2(int* x) { int
pointer to a reference
pointer to a reference  pointer to a reference in C++    #include <iostream> using namespace std; void foo1(int& x) { int* p = &x; *p = 123; } void foo2(int* x) { int
PHP Static Variable and Methods
copy of the variable for the class. All objects of that class will access one copy... the all objects of that class.ADS_TO_REPLACE_1 If we declare a method as static
you pass a variable by value.
you pass a variable by value.  How do you pass a variable by value?   Hi friends, Just like in C++, put an ampersand in front of it, like...($a) { return ++$a; } add($a); /*---------------Pass by reference
What is the purpose of declaring a variable as final?
What is the purpose of declaring a variable as final?   Hi, What is the purpose of declaring a variable as final? Thanks   Hi, In Java when we declare a final variable as a variable which has been initialized
Converting jsp variable to java variable
Converting jsp variable to java variable  Hi how to convert java script variable to java variable on same jsp page
Pointer a variable
Pointer a variable  hii, Pointer is a variable or not ?   hello,ADS_TO_REPLACE_1 Yes, a pointer is a variable
Java variable
Java variable   To what value is a variable of the String type automatically initialized
Reference Data Types
is a variable that can contain the reference or an address of dynamically created... is treated  as a type in a java program, so that you can declare a variable... variable.  Whenever a variable is created, a reference to an object is also
ModuleNotFoundError: No module named 'declare-amqp'
ModuleNotFoundError: No module named 'declare-amqp'  Hi, My Python... 'declare-amqp' How to remove the ModuleNotFoundError: No module named 'declare-amqp' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'declare-config'
ModuleNotFoundError: No module named 'declare-config'  Hi, My... named 'declare-config' How to remove the ModuleNotFoundError: No module named 'declare-config' error? Thanks   Hi, In your python

Ads