Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8833397
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T08:46:13+00:00 2026-06-14T08:46:13+00:00

Just getting my feet wet with Java so I apologize if this seems a

  • 0

Just getting my feet wet with Java so I apologize if this seems a bit naive. I’m trying to get a better understanding of the conventions for accessing instance / member variables in practice.

Can a non-static instance variable be manipulated from a
non-static context?

For instance, How could one modify the following class definition to allow the id and version variables to increment.

    class Foo {
    
        private int id;
        private int version;
        public String product;
        public String model;
    
        private Foo( ) {
    
            // Can these variables be accessed from a non-static context?
            id++;
            version++;
    
        }
        ...

In comparison with static fields …

      class Foo {

        private static int id;
        private static int version;
        public String product;
        public String model;

        private Foo( ) {

            id++;
            version++;

        }
        ...

        

First Example …

1
1
Model One
First

1
1
Model Two
Second

Second Example …

1
1
Model One
First

2
2
Model Two
Second

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T08:46:14+00:00Added an answer on June 14, 2026 at 8:46 am

    You can access a static-variable from a non-static context, because static variables are bound to a class. So, even if you access it within a non-static context, it is accessed just like in static context.

    For e.g: –

    MyClass obj = null;
    obj.staticVar = 10;
    

    Surprisingly the above code does not throw NPE, as the static varible is accessed on class name regardless of how you are accessing it.

    So, obj.staticVar is actually replaced with MyClass.staticVar.

    But the reverse is not true. You cannot access a non-static variable from a static context. Because, in a static context, you don’t have any reference to an instance. And you can’t access instance variable without any reference to an instance of that class.


    Having said that, also note that, just because you can do something, doesn’t mean that it is a good idea. Modifying a static variable inside a constructor or in any non-static context is a terrible idea. Because, any change you make to those variables, will be reflected for all the instances of that class.

    Rather, you should use a static-initialization block to initialize the static variables. Static initialization block is executed at class-loading time, to initialize all the static variables.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just getting my feet wet with some Fluent NHibernate AutoMap conventions, and ran into
I am just getting my feet wet with Qt, I am trying to pull
I'm just getting my feet wet with LINQ. Given three lists of items, this
I'm just getting my feet wet with Ember.js, and I've hit something that I'm
just getting my feet wet with sql server express. I have what would be
I'm just getting my feet wet with Android and have built a UI that
Just getting started here and cannot seem to get this very basic thing working.
I'm just getting my feet wet with Linq and IEnumerable, and I'm needing help
I'm just getting my feet wet in Silverlight, and don't really understand the differences
I am just getting my feet wet where JavaScript Prototyping is involved, and I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.