advertisement
javaboutique
Search Tips
Articles  |   Tutorials  |   Reviews  |   Tools  |   by Category  |   by Date  |   by Name  |   Submit  |   Source  |   Forums  |  
javaboutique
Browse DevX


Partners & Affiliates











advertisement


Reviews : Java Books :
Beginning Java Objects : Chapters 2 and 3

Title: Beginning Java Objects
ISBN: 1861004176
US Price: $ 39.99
Canadian Price:
C$ 59.95
UK Price: £ 28.99
Publication Date: November 2000
Pages: 800
© Wrox Press Limited, US and UK.

Beginning Java Objects: Chapter 3
Objects and Classes

Instantiating Objects: A Closer Look

Different OO languages differ in terms of when an object is actually conceived. In Java, when we declare a variable to be of a user-defined type, like:

Student y;

we haven't actually created an object in memory yet. Reference variable 'y' merely has the potential to be a reference to a Student object, but, until we initialize y by assigning it a specific object to refer to, y is said to have the value null, which as we learned in Chapter 1 is a reserved word in the Java language. We have to take the distinct step of using a special Java operator, the new operator, to actually carve out a brand new object in memory, as follows:

y = new Student();

(Don't worry about the parentheses at the end of this statement; we'll talk about their significance in Chapter 4.)

Think of the newly created object as a helium balloon, and a reference variable as the string that allows us to hold onto and access (reference) the object whenever we'd like.

image 13

Because a reference variable is said to 'hold onto' an object, we often use the informal term handle as a synonym to the term 'reference'.

We could also create a new object without immediately assigning it to a reference variable, as in the following line of code:

new Student();

but such an object would be like a helium balloon whose string had been let go: it would indeed exist, but we'd never be able to access this object in our program. It would in essence, 'float away' from us in memory.

Note that we can combine the two steps — declaring a reference variable and actually instantiating an object for that variable to refer to — into a single line of code:

Student y = new Student();

Another way to initialize a reference variable is to hand it a preexisting object: that is, an object ('helium balloon') whose handle ('string') is already being held by some other reference variable. Let's look at an example:

// We instantiate our first Student object.
Student x = new Student();
// We declare a second reference, but do not instantiate a second object.
Student y;
// We pass y a 'handle' on the same object that x is holding
// (x continues to hold onto it, too).    We now, in essence,
// have two 'strings' tied to the same 'balloon'.
y = x;

image 14

The conceptual outcome of the preceding code is illustrated below: two 'strings' tied to the same 'balloon' — that is, two reference variables referencing the same object.

We therefore see that the same object can have many reference variables holding onto it; but, as it turns out, any one reference variable can only hold onto one object at a time. To grab onto a new object handle means that a reference variable must let go of the old object handle that it was previously holding onto, if any.




How to Add Java Applets to Your Site

New on the Java Boutique:

New Review:

Time Management Made Easy with the Quartz Enterprise Job Scheduler
Why not just use the Java timer API? This open source scheduling API boasts simplicity, ease-of-integration, a well-rounded feature set, and it's free!

New Applet:

Reverse Complement
Reverse Complement is a simple applet that converts DNA or RNA sequences into three useful formats.

Elsewhere on internet.com:

WebDeveloper Java
Lots of Java information on webdeveloper.com

WDVL Java
Thorough Java resource at the Web Developer's Virtual Library.

ScriptSearch Java
Hundreds of free Java code files to download.

jGuru: Your View of the Java Universe
Customizable portal with online training, FAQs, regular news updates, and tutorials.

 Avaya Developer Showcase
 MSDN Spotlight
 PHP for Windows Showcase
XML error: undefined entity at line 34
advertisement
Receive Articles via our XML/RSS feed
Receive Articles via our XML/RSS feed

JavaBytes
Internet Cyclone
This powerful, easy-to-use, internet optimizer is for Windows 95, 98, ME, NT, 2000 and XP. It's designed to automatically optimize your Windows settings, boosting your Internet connection up to 200%.

IBM Brings Developers Into the Cloud
Apache at 10: You Can't Buy Us
Microsoft's CodePlex Foundation Moving Forward
Apple Claims 100,000 Apps, Google Analyzes Them
Nokia Latest to Play Opera Mobile 10 Browser
PayPal Opens Up Payment Platform to Devs
Ubuntu Linux 9.10 'Karmic Koala' Starts Its Climb
IBM Links Rational Developer Tools, Tivoli Apps
Libraries Give Vista Apps a Windows 7 Look
Ubuntu: The 'Default Alternative' to Windows?

Delivering Web-based Embedded Fonts in CSS 3
Adobe Helps PHP Developers Create Rich Internet Applications
Java Developers Finding a Home at Adobe Flex
Virtualization Delivers a Dynamic Infrastructure
Consuming XML Web Services in iPhone Applications
Build a More Agile Business with IBM
POJO-Based Solutions for LDAP Access: One Good, One Better
IBM Offers Enhanced Measurement and Management for Energy Usage
IBM Helps Transformation to an Information-Based Enterprise
Top Five Touch UI-Related Design Guidelines

Advertising Info  |   Member Services  |   Contact Us  |   Help  |   Feedback  |   Site Map  |   Network Map  |   About

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs