Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Instance variable
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== Java === <syntaxhighlight lang="java"> //Example.java class Example { public int x = 0; public void setX(int newValue) { this.x = newValue; } } //Main.java class Main { public static void main(String[] args) { Example example1 = new Example(); Example example2 = new Example(); //We can set the value of x by itself, as the variable is public example1.x = 10; assert example1.x == 10; assert example2.x == 0; //As setX is an instance method, it can also access the variable example2.setX(-10); assert example1.x == 10; assert example2.x == -10; } } </syntaxhighlight> In this [[Java (programming language)|Java]] example, we can see how instance variables can be modified in one instance without affecting another.
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)