Variables only get memory allocation during object creation, so why does assigning a value to a variable outside a constructor produce no error? Moreover what is the location of this assigned value as no particular object is created?
How is it possible for variables to be initialized outside of the constructor?
129 Views Asked by Rony Parker At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in CONSTRUCTOR
- Can anyone explain why this snippet of code is working in the constructor only?
- Java Running A Constructor from a Subclass
- C++ compiler thinks my constructor definition is a method
- Ocaml unbound type constructor with module
- java: using default constructors in calculations
- Inheritance with base class constructor with parameters
- Is it possible to use "PowerMockito.whenNew()" only for first occurence?
- Different constructor in template: one for string and one for anything else
- Using of Thread within a constructor?
- what does DefaultEdge.class mean in jgrapht example
- How to create my own object properly out of stdClass object
- Custom Exception: customize message before call the base constructor
- When actually primitive type constructor gets called & used?
- Invoking overload constructor within constructor
- Javascript constructor function to count the number of instances
Related Questions in INSTANCE-VARIABLES
- C++ assign const reference to instance variable (memory issues?)
- instance_variable_get returns nil when it's an empty string
- handle different instance variables in method
- Difference between static and global variables
- Wrapping instance variables in accessor methods
- Instance variable increment in bean on button click JSF 2.2
- How to call a function stored in a Python class instance variable
- Fill instance variable with all Users from table
- What is the python attribute get and set order?
- Defining instance variables in __init__ vs class's namespace?
- I have the methods, but need program code for Grade enum
- How do I assign instance variables from a constructor, using existing variables in another class?
- Swift - difference between class level instantiation and method level instantiation
- Simple instance variable issue
- Test First Ruby - Timer : problems implementing Symbol#to_proc within the time_string method
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Because all of the instance field initializer code (and any instance initializer blocks) are executed as if they were part of the constructor.
In fact, the sequence is as follows:
this(...)orsuper(...)call. (This recurses up the chain performing field initialization and running constructors. For athiscall, we then skip the next step.)Step 6 is where the field initializers you were concerned about get dealt with. The code for the initializer expressions and blocks are combined into a synthetic method that gets called by the constructor at the appropriate point. However, that is an implementation detail.
As you can see, the amount of memory allocated to the object is determined very early on, and is not affected by any of the initialization logic. The variables and the amount of memory needed to represent them in the object itself will be the same ... no matter what.
The locations of the fields are part of the object allocated in step 3. Just like the case where the initialization was done in the constructor.
(Perhaps you were confused about what actually happens when you assign an object or array to a field? Remember that Object and Array types are called reference types. A field or variable whose type is a reference type corresponds to a location to hold just the reference ... NOT the actual state of the object that the reference refers to.)
(Perhaps you were thinking that the invocation of a constructor is the same as the invocation of a normal method. That isn't so ... see above.)