Hi Guest

HomePage

1 1

To improves our performance please Like Share Subscribe(Will boost us)

Difference between Local and Instance variable in Java with example
Question Posted on 19 Feb 2020

Home >> Java >> Core Java >> Difference between Local and Instance variable in Java with example

Difference between Local and Instance variable in Java with example
First of all we will take Local variable. We can use local variable inside method, constructor or any block in classes. The main thing is that it has only local scope and cannot cross that scope means if we define in one block then scope is only that block same as happen with method. And one of the main benefits of using local variable is that other methods in the class cannot use or aware of the local variable define in the method. Below is the example of local variable
if(i>10)
{
string websitename="crackyourinterview.com";
}

in above code scope of string variable is only that if block.


Now comes to Instance variable. This variable is bounded to its object itself. We will declared this variable in the class. And these declare outside the method. And when any object of class will use they will create a copy of the variable. So once some one made change to that variable will not reflect in any other instance of that class and scope of that to particular instance only.
class student{
Public string studentName;
public in studentage;
}

Here both of the variable are instance variable any method in the class can use these 2 variables.
0
0



Most Visited Questions:-

Deep Learning Questions Answers
Below are the different Deep Leaning Questions and answer a More...

Continuous Integration Questions Answers
Below are the 20 odd questions for CI or Continuous Integra More...

Derived relationships in Association Rule Mining are represented in the form of __________.
Derived relationships in Association Rule Mining are repres More...

What is Gulpjs and some multiple choice questions on Gulp
Gulpjs is an open source whihc helps in building Javascript More...

Microservices Architecture Questions Answers
Below are the different questions on Microservices Architec More...




Other Important Questions
what is an object
what is OOAD
difference between c++ and java
what is a transient variable in java
difference between C and Java on pointers






Most Visited Questions
Top Searches:asp net questions vb net questions sql query uddl questions class javascript Questions sharepoint interview questions and concept silverlight questions and concept wcf questions beans general knowledge ajax questions
PHP | Biztalk | Testing | SAP | HR |
     
 
Privacy policy | Terms and Conditions | Blog


If the copyright of any questions or content or syntax belong to you email us we will remove that(info@crackyourinterview.com or crackyourinterview2018@gmail.com)
 

1
Home About Us GroupChat
 
Sitemap Feedback Contact us