TweetFollow Us on Twitter

Java Break 2
Volume Number:12
Issue Number:6
Column Tag:Getting Started

More Java Basics

By Dave Mark

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

Last month, we started exploring Java, Sun’s object-programming language that has exploded in popularity over the last year. As a reminder, Java is similar to C++, but with some very important differences. The Java syntax is just like C++, but without the pointer syntax. The Java environment that runs on your machine is multi-threaded, with a low-priority thread that does automatic garbage collection.

Your Java source code will reside in a file ending with the .java extension. Your Java source code will implement a class, or a series of classes. Depending on your development environment, you will compile the classes into a stream of Java byte-code, which will get stored in a .class file, in a series of .class files, in a .zip file, or, in some cases, in a double-clickable application file.

The .class file is designed to hold a single class. If you build a bunch of .class files, you could pay a severe penalty in wasted hard drive space. For example, my 1-gig hard drive has a minimal file size of 17K. If I build 100 .class files, each of which is filled with 100 bytes of byte-code, I’ll end up using 1700K of hard drive space to store 10,000 bytes of byte-code. Not very efficient, eh?

The solution to this problem is the .zip file. The .zip lets you combine a set of classes into a single file of byte-code. Since the .zip format is based on the .zip compression format from the PC universe, you can use a zip utility (like UnZip) to peruse the classes in a .zip file.

To run your byte code, you’ll need a byte-code interpreter. There are several options for doing this. Your development environment most likely came with some form of Java virtual machine. It might be called “javai”, “Applet Runner”, “Applet Viewer”, or something else. The point is, the virtual machine knows how to turn your generic Java byte-code into the equivalent machine code specific to your platform. There are Java virtual machines written specifically for the PowerMac, and Java virtual machines written for 680x0, x86, and Unix platforms as well. The first virtual machines came from Sun. Other vendors are writing their own. Check with your development environment for details on your virtual machine.

Java Reference Basics

Our first Java program this month demonstrates an important and potentially confusing difference between Java and C++. As stated earlier, Java doesn’t support pointers. When you create an object, the variable you associate with the object instance is known as a reference. This example should make this clear.

If you are using CodeWarrior or Caffeine, create a new project file using the appropriate Java stationery. I’m using the CodeWarrior droplet stationery, so my project was named reference.µ.

The CodeWarrior environment ships with a bunch of stationery, including one for Java applets and one for Java droplets. The Java applets stationery lets you create an applet designed to be launched from an HTML file. This is pretty standard stuff and will be supported by most every Java development environment you run into.

The droplet stationery is both cool and different. It lets you turn your Java code into a standalone application, complete with 4-byte creator code and its associated 'BNDL' resources. And if you drop a file or set of files onto the droplet, the names of the files get passed to main() via the argv parameter. I’ll present a small example of this later in the column.

Once your project file is set up, create a new source code file named reference.java and type this source code into the file:

public class reference
{
 public static void main( String argv[] )
 {
 String s1 = "Sample String";
 String s2 = "Sample String";
 String s3 = new String(s1); 

 if ( s1 == s2 )
 System.out.println( "s1 is the same object as s2" );
 else
 System.out.println("s1 is not the same object as s2");

 if ( s1 == s3 )
 System.out.println( "s1 is the same object as s3" );
 else
 System.out.println("s1 is not the same object as s3");
 }
}

Compile and run the program. Here’s the results you should see in your stdout window:

s1 is the same object as s2
s1 is not the same object as s3

Let’s take a walk through the source. These three lines declare references to String objects:

 String s1 = "Sample String";
 String s2 = "Sample String";
 String s3 = new String(s1); 

The first line creates a reference named s1 and also creates a new String object, initializing it with the literal “Sample String”. The second line also creates a reference, this one named s2. The question here is, was a new object created? The answer is no. The compiler checks to see if a literal with the value “Sample String” already exists. Since such a literal does exist, the compiler doesn’t bother creating a new one. It just creates the new object reference (s2) and makes it refer to the original literal. Since there is no way to modify a literal, this strategy is pretty sure-fire. Since pointers don’t exist in Java, the compiler has more freedom in allocating memory for objects.

The third line of the set uses new to force the allocation of a new String object. The String reference s1 is passed as a parameter to the String constructor. So we end up with three String references: s1 and s2 both refer to the same String object, and s3 points to a second String object.

To verify this theory, the first if-else statement uses the == operator to test if s1 is the same as s2. Note that this tests whether s1 and s2 refer to the same object. As proof, the result of the first if-else is:

s1 is the same object as s2

The second if-else compares s1 to s3. Since we used new to force the allocation of a new String object, it is no surprise that the second if-else produces this result:

s1 is not the same object as s3

Take a few minutes to review the String methods; you’ll find them in the API Documentation folder in the file java.lang.String.html. Pay specific attention to the compareTo(), equals(), and equalsIgnoreCase() methods.

Copying an Object

Before we move on to our second example, let’s talk about copying objects for a moment. I was reading through my pile of Java books when I noticed an interesting discrepancy. Several of the books specified that to duplicate an object, you should use the copy() method, inherited from java.lang.Object. Alternatively, some sources recommended that you use the clone() method, also inherited from java.lang.Object.

Being a curious son-of-a-gun, I wheeled over to Netscape and opened up java.lang.Object.html (in the folder API Documentation) to look for clone() and copy(). As it turns out, copy() isn’t there and clone() is there, but marked as protected and couldn’t be called from our main() class above.

So what the heck was going on here? After a few phone calls and emails to my Java buddies, I found out that copy() was dropped from the Java API between beta 1 and beta 2 of Java. I also found out that the clone() method was changed to protected and that a new interface (we’ll talk about Java interfaces in a future column) was created, called the cloneable interface. Basically, if you want your objects to be cloneable, they need to implement the cloneable interface. To learn more about this, check out the file CloneNotSupportedException.html and this URL: http://java.sun.com/JDK-beta2/changes.html

The point of all this isn’t to push the cloneable interface. I was just trying to save you from going through the head-banging exercise I just went through trying to figure out why copy() and clone() weren’t working as they were described in the books. But if you want to learn how to make your objects cloneable, well, go right ahead...

Figure 1: The Preferences dialog from the Hello droplet

A Quick Droplet

Our second example is a droplet, built using CodeWarrior. Basically, the droplet is an application that sends the embedded classes to the virtual machine. If any files are dropped on the droplet, their names are sent to main() in the argv parameter.

To create a droplet, create your project using the droplet stationery. Copy the resource file from the example “HelloWorld” droplet and edit it to change the creator signature and signature resource. Next, edit the project preferences to reflect the application’s file name, the name of your class, and your creator (Figure 1).

Here’s the droplet source code for the Hello droplet (note that the class is called HelloWorld but the droplet is called Hello):

public class HelloWorld
{
 public static void main(String argv[])
 {
 if (argv.length == 0 )
 System.out.println("You launched Hello " +
 "without dropping anything on it.");
 else
 {
 System.out.println("You launched Hello " +
 "dropping the following things:");

 for(int i = 0; i<argv.length; i++)
 System.out.println("Arg[" + 
 i + "]=" + argv[i]);
 }
 }
}

Basically, this code prints one message if the droplet is launched without any files dropped on it, or else prints the list of files dropped on the droplet.

Here’s the result of launching the Hello droplet without any files dropped on it:

You launched Hello without dropping anything on it.

Here’s the result when I dropped three files on the droplet:

You launched Hello dropping the following things:
Arg[0]=/Macintosh%20HD/Test%20Files/File1
Arg[1]=/Macintosh%20HD/Test%20Files/File2
Arg[2]=/Macintosh%20HD/Test%20Files/File3

Note that the %20 in the string represents ASCII character 32, which is the space character. 20 in hex is 32.

Our First Applet

Before we go, here’s a taste of things to come: our first official applet. As mentioned in last month’s column, a Java applet is a Java class that is derived from the class java.applet.Applet. The java.applet.Applet class is described in the file java.applet.Applet.html. Take a few minutes to look this page over.

Our first applet takes advantage of the packages java.awt.Graphics and java.awt.Font. Take a few minutes to look over the files java.awt.Graphics.html and java.awt.Font.html. In fact, it is probably a good idea to look through the files in the API Documentation just to get an idea of what is in there.

Our applet will consist of a single class, called hello, and a single method, called paint(). Our paint() overrides the standard paint() method that is part of the standard applet. The default paint() method does nothing. Ours will use a sequence of AWT (the Java equivalent to the Mac Toolbox) calls to draw the string “Hello, world!” in a pane or in a window (depending on the browser).

Here’s the source code:

import java.awt.Font;
import java.awt.Graphics;

public class hello extends java.applet.Applet
{
 public void paint( Graphics g )
 {
 Font f = new Font( "Chicago", Font.PLAIN, 36 );
 
 g.setFont( f );
 g.drawString( "Hello, world!", 0, 30 );
 }
}

Notice that we don’t have a main() in our class. Instead, our class follows the standard established for applets. The paint() method will be called when it is time to draw our applet. The Font object will be created using the Chicago font and is set to plain 36 point. The Font object is passed to the setFont() method, making that font, style, and size current for the Graphics object g. Next, the string “Hello, world!” is drawn in g at the coordinates (0, 30) using the method drawString().

To run this applet, you’ll need to first compile the source code into a class file (I called my class file hello.class) and then build a bit of HTML to launch the applet. Here’s my HTML code:

<title>My test applet...</title>
<hr>
<applet code="hello.class" width=250 height=35></applet>
<hr>

Of course, you might want to add more to your HTML, but this should do the trick. Save the code as hello.html, and be sure hello.html and hello.class are in the same folder. Now drag hello.html onto your applet runner. Theoretically, you should see something like the window shown in Figure 2.

Figure 2. Running the applet using CodeWarrior

Till Next Month...

To me, having the advanced windowing toolkit (AWT) is like having a copy of PowerPlant or the TCL. The framework takes care of all the administrative detail so I can concentrate on filling in the details. In next month’s column, we’ll do just that. We’ll poke around the nooks and crannies, exploring the AWT. See you then...

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Dropbox 193.4.5594 - Cloud backup and sy...
Dropbox is a file hosting service that provides cloud storage, file synchronization, personal cloud, and client software. It is a modern workspace that allows you to get to all of your files, manage... Read more
Google Chrome 122.0.6261.57 - Modern and...
Google Chrome is a Web browser by Google, created to be a modern platform for Web pages and applications. It utilizes very fast loading of Web pages and has a V8 engine, which is a custom built... Read more
Skype 8.113.0.210 - Voice-over-internet...
Skype is a telecommunications app that provides HD video calls, instant messaging, calling to any phone number or landline, and Skype for Business for productive cooperation on the projects. This... Read more
Tor Browser 13.0.10 - Anonymize Web brow...
Using Tor Browser you can protect yourself against tracking, surveillance, and censorship. Tor was originally designed, implemented, and deployed as a third-generation onion-routing project of the U.... Read more
Deeper 3.0.4 - Enable hidden features in...
Deeper is a personalization utility for macOS which allows you to enable and disable the hidden functions of the Finder, Dock, QuickTime, Safari, iTunes, login window, Spotlight, and many of Apple's... Read more
OnyX 4.5.5 - Maintenance and optimizatio...
OnyX is a multifunction utility that you can use to verify the startup disk and the structure of its system files, to run miscellaneous maintenance and cleaning tasks, to configure parameters in the... Read more

Latest Forum Discussions

See All

Zenless Zone Zero opens entries for its...
miHoYo, aka HoYoverse, has become such a big name in mobile gaming that it's hard to believe that arguably their flagship title, Genshin Impact, is only three and a half years old. Now, they continue the road to the next title in their world, with... | Read more »
Live, Playdate, Live! – The TouchArcade...
In this week’s episode of The TouchArcade Show we kick things off by talking about all the games I splurged on during the recent Playdate Catalog one-year anniversary sale, including the new Lucas Pope jam Mars After Midnight. We haven’t played any... | Read more »
TouchArcade Game of the Week: ‘Vroomies’
So here’s a thing: Vroomies from developer Alex Taber aka Unordered Games is the Game of the Week! Except… Vroomies came out an entire month ago. It wasn’t on my radar until this week, which is why I included it in our weekly new games round-up, but... | Read more »
SwitchArcade Round-Up: ‘MLB The Show 24’...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for March 15th, 2024. We’re closing out the week with a bunch of new games, with Sony’s baseball franchise MLB The Show up to bat yet again. There are several other interesting games to... | Read more »
Steam Deck Weekly: WWE 2K24 and Summerho...
Welcome to this week’s edition of the Steam Deck Weekly. The busy season has begun with games we’ve been looking forward to playing including Dragon’s Dogma 2, Horizon Forbidden West Complete Edition, and also console exclusives like Rise of the... | Read more »
Steam Spring Sale 2024 – The 10 Best Ste...
The Steam Spring Sale 2024 began last night, and while it isn’t as big of a deal as say the Steam Winter Sale, you may as well take advantage of it to save money on some games you were planning to buy. I obviously recommend checking out your own... | Read more »
New ‘SaGa Emerald Beyond’ Gameplay Showc...
Last month, Square Enix posted a Let’s Play video featuring SaGa Localization Director Neil Broadley who showcased the worlds, companions, and more from the upcoming and highly-anticipated RPG SaGa Emerald Beyond. | Read more »
Choose Your Side in the Latest ‘Marvel S...
Last month, Marvel Snap (Free) held its very first “imbalance" event in honor of Valentine’s Day. For a limited time, certain well-known couples were given special boosts when conditions were right. It must have gone over well, because we’ve got a... | Read more »
Warframe welcomes the arrival of a new s...
As a Warframe player one of the best things about it launching on iOS, despite it being arguably the best way to play the game if you have a controller, is that I can now be paid to talk about it. To whit, we are gearing up to receive the first... | Read more »
Apple Arcade Weekly Round-Up: Updates an...
Following the new releases earlier in the month and April 2024’s games being revealed by Apple, this week has seen some notable game updates and events go live for Apple Arcade. What The Golf? has an April Fool’s Day celebration event going live “... | Read more »

Price Scanner via MacPrices.net

Apple Education is offering $100 discounts on...
If you’re a student, teacher, or staff member at any educational institution, you can use your .edu email address when ordering at Apple Education to take $100 off the price of a new M3 MacBook Air.... Read more
Apple Watch Ultra 2 with Blood Oxygen feature...
Best Buy is offering Apple Watch Ultra 2 models for $50 off MSRP on their online store this week. Sale prices available for online orders only, in-store prices may vary. Order online, and choose... Read more
New promo at Sams Club: Apple HomePods for $2...
Sams Club has Apple HomePods on sale for $259 through March 31, 2024. Their price is $40 off Apple’s MSRP, and both Space Gray and White colors are available. Sale price is for online orders only, in... Read more
Get Apple’s 2nd generation Apple Pencil for $...
Apple’s Pencil (2nd generation) works with the 12″ iPad Pro (3rd, 4th, 5th, and 6th generation), 11″ iPad Pro (1st, 2nd, 3rd, and 4th generation), iPad Air (4th and 5th generation), and iPad mini (... Read more
10th generation Apple iPads on sale for $100...
Best Buy has Apple’s 10th-generation WiFi iPads back on sale for $100 off MSRP on their online store, starting at only $349. With the discount, Best Buy’s prices are the lowest currently available... Read more
iPad Airs on sale again starting at $449 on B...
Best Buy has 10.9″ M1 WiFi iPad Airs on record-low sale prices again for $150 off Apple’s MSRP, starting at $449. Sale prices for online orders only, in-store price may vary. Order online, and choose... Read more
Best Buy is blowing out clearance 13-inch M1...
Best Buy is blowing out clearance Apple 13″ M1 MacBook Airs this weekend for only $649.99, or $350 off Apple’s original MSRP. Sale prices for online orders only, in-store prices may vary. Order... Read more
Low price alert! You can now get a 13-inch M1...
Walmart has, for the first time, begun offering new Apple MacBooks for sale on their online store, albeit clearance previous-generation models. They now have the 13″ M1 MacBook Air (8GB RAM, 256GB... Read more
Best Apple MacBook deal this weekend: Get the...
Apple has 13″ M2 MacBook Airs available for only $849 today in their Certified Refurbished store. These are the cheapest M2-powered MacBooks for sale at Apple. Apple’s one-year warranty is included,... Read more
New 15-inch M3 MacBook Air (Midnight) on sale...
Amazon has the new 15″ M3 MacBook Air (8GB RAM/256GB SSD/Midnight) in stock and on sale today for $1249.99 including free shipping. Their price is $50 off MSRP, and it’s the lowest price currently... Read more

Jobs Board

Early Preschool Teacher - Glenda Drive/ *Appl...
Early Preschool Teacher - Glenda Drive/ Apple ValleyTeacher Share by Email Share on LinkedIn Share on Twitter Read more
Senior Software Engineer - *Apple* Fundamen...
…center of Microsoft's efforts to empower our users to do more. The Apple Fundamentals team focused on defining and improving the end-to-end developer experience in Read more
Relationship Banker *Apple* Valley Main - W...
…Alcohol Policy to learn more. **Company:** WELLS FARGO BANK **Req Number:** R-350696 **Updated:** Mon Mar 11 00:00:00 UTC 2024 **Location:** APPLE VALLEY,California Read more
Medical Assistant - Surgical Oncology- *Apple...
Medical Assistant - Surgical Oncology- Apple Hill WellSpan Medical Group, York, PA | Nursing | Nursing Support | FTE: 1 | Regular | Tracking Code: 200555 Apply Now Read more
Early Preschool Teacher - Glenda Drive/ *Appl...
Early Preschool Teacher - Glenda Drive/ Apple ValleyTeacher Share by Email Share on LinkedIn Share on Twitter Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.