| ★ wanayoo — archive 1999 http://howstuffworks.com/program.htm | Nouvelle recherche | Portail wanayoo |
Have you ever wondered how computer programs work? Have you ever wanted to learn how to write your own computer programs? Whether you are 14 years old and hoping to learn how to write your first game, or you are 70 years old and have simply been curious about computer programming for 20 years, this edition of How Stuff Works will help you to learn how computer programs work by teaching you how to program in the Java programming language.
In order to teach you about computer programming, I am going to make several assumptions from the start:
The first thing that we need to do is discuss the Programmer's Creed. Computer programming requires a certain mindset, and if you take the programmer's creed then it helps you to get into that mindset early. There are three parts to the programmer's creed.
|
The next thing we need to do is learn a little vocabulary. Keep in mind that I am assuming that you know nothing about programming. Here are several vocabulary terms that will make things understandable:
In order for you to start writing computer programs in a programming language called Java, you need a compiler for the Java language. The next section guides you through the process of downloading and installing a compiler. Once you have a compiler, we can get started. This process is going to take several hours, much of that time being download time for several large files. You are also going to need about 40 megabytes of free disk space, so make sure you have the space available before you get started.
Downloading the Java Compiler
In order to get a Java development environment (you "develop" (write) computer programs using a "development environment") set up on your machine, you will have to complete the following steps:
You are now the proud owner of a machine that can compile Java programs. You are ready to start writing software! By the way, one of the things you just unpacked is a demo directory full of neat examples. All of the examples are ready to run, so you might want to find the directory and play with some of the samples. Many of them make sounds, so be sure to turn on your speakers. To run the examples, find pages with names like example1.html and load them into your normal Web browser.
Your First Program
Your first program will be short and sweet. It is going to create a drawing area and draw a diagonal line across it. To create this program you will need to:
import java.awt.Graphics;
public class FirstApplet extends java.applet.Applet
{
public void paint(Graphics g)
{
g.drawLine(0, 0, 200, 200);
}
}
javac FirstApplet.java
CASE MATTERS. Either it will work, and in that case nothing will be printed to the window, or there will be errors. If there are no errors a file named FirstApplet.class will be created in the directory right next to FirstApplet.java.
[Make sure that the file saved to the name FirstApplet.java and not FirstApplet.java.txt. This is most easily done by typing dir in the MS-DOS window and looking at the file name. If it has a .txt extension, remove it by renaming the file. Or run the Windows Explorer and select the Options option in the View menu. Make sure that the "Hide MD-DOS File Extensions for file types that are registered" check box is NOT checked, and then look at the filename with the explorer. Change it if necessary.]
<html>
<body>
<applet code=FirstApplet.class width=200 height=200> </applet>
</body>
</html>
Save this file in the same directory with the name applet.htm.
[If you have never worked with HTML before, please read How a Web Page Works. The applet tag is how you access a Java applet from a web page.]
appletviewer applet.htm
You should see a diagonal line running from the upper left corner to the lower right corner:

Pull the applet viewer a little bigger to see the whole line. You should also be able to load the HTML page into any modern browser like Netscape Navigator or Microsoft Internet Explorer and see approximately the same thing.
You have successfully created your first program!!!
Understanding What Just Happened
So what just happened? First, you wrote a piece of code for an extremely simple Java applet. An applet is a Java program that can run within a Web browser, as opposed to a Java Application which is a stand-alone program that runs on your local machine (Java applications are slightly more complicated and somewhat less popular, so we will start with applets). We compiled the applet using javac. We then created an extremely simple web page to "hold" the applet. We ran the applet using appletviewer, but you can just as easily run it in a browser.
The program itself is about 10 lines long:
import java.awt.Graphics;
public class FirstApplet extends java.applet.Applet
{
public void paint(Graphics g)
{
g.drawLine(0, 0, 200, 200);
}
}
This is about the simplest Java applet you can create. To fully understand it you will have to learn a fair amount, particularly in the area of object oriented programming techniques. Since I am assuming that you have zero programming experience, what I would like you to do is focus your attention on just one line in this program for the moment:
g.drawLine(0, 0, 200, 200);
This is the line in this program that does the work. It draws the diagonal line. The rest of the program is scaffolding that supports that one line, and we can ignore the scaffolding for the moment. What happened here was that we told the computer to draw one line from the upper left hand corner (0,0) to the bottom right hand corner (200, 200). The computer drew it just like we told it to. That is the essence of computer programming!
[Note also that in the HTML page we set the size of the applet's window in step 5 above to have a width of 200 and a height of 200.]
In this program we called a method (a.k.a. a function) called drawLine and we passed it 4 parameters (0, 0, 200, 200). The line ends in a semicolon. The semicolon acts like the period at the end of the sentence. The line begins with g., signifying that we want to call the method named drawLine on the specific object named g (which you can see one line up is of the class Graphics - we will get into classes and methods of classes in much more detail later in this article).
A method is simply a command - it tells the computer to do something. In this case, drawLine tells the computer to draw a line between the points specified: (0, 0) and (200, 200). You can think of the window as having its 0,0 coordinate in the upper left corner, with positive X and Y axes extending to the right and down. Each dot on the screen (a pixel) is 1 increment on the scale.

Try experimenting by using different numbers for the 4 parameters. Change a number or two, save your changes, recompile with javac and rerun after each change in appletviewer, and see what you discover.
What other functions are available besides drawLine? You find this out by looking at the documentation for the Graphics class. When you installed the Java development kit and unpacked the documentation, one of the files unloaded in the process is called java.awt.Graphics.html, and it is on your machine. This is the file that explains the Graphics class. On my machine the exact path to this file is D:\jdk1.1.7\docs\api\java.awt.Graphics.html. On your machine the path is likely to be slightly different but close - it depends on exactly where you installed things. Find the file and open it. Up toward the top of this file there is a section called "Method Index". This is a list of all of the methods this class supports. The drawLine method is one of them but you can see MANY others. You can draw:
g.drawLine(0, 0, 200, 200);
g.drawRect(0, 0, 200, 200);
g.drawLine(200, 0, 0, 200);
It will draw a box with 2 diagonals (be sure to pull the window big enough to see the whole thing). Try drawing other shapes. Read about and try changing the color with the setColor method. For example:
import java.awt.Graphics;
import java.awt.Color;
public class FirstApplet extends java.applet.Applet
{
public void paint(Graphics g)
{
g.setColor(Color.red);
g.fillRect(0, 0, 200, 200);
g.setColor(Color.black);
g.drawLine(0, 0, 200, 200);
g.drawLine(200, 0, 0, 200);
}
}
Note the addition of the new import line in the 2nd line of the program. The output of this program looks like this:

One thing that might be going through your head right now is, "How did he know to use Color.red rather than simply red, and how did he know to add the second import line?" You learn things like that by example. Because I just showed you an example of how to call the setColor method, you now know that whenever you want to change the color you will use Color. followed by a color name as a parameter to the setColor method, and you will add the appropriate import line at the top of the program. If you look up setColor it has a link that will tell you about the Color class, and in it is a list of all the valid color names along with techniques for creating new (unnamed) colors. You read that information, you store it in your head and now you know how to change colors in Java. That is the essence of becoming a computer programmer - you learn techniques and remember them for the next program you write. You learn the techniques either by reading an example (as you did here) or by reading through the documentation or by looking at example code (as in the demo directory). If you have a brain that likes exploring and learning and remembering things, then you will love programming!
In this section you have learned how to write linear, sequential code - blocks of code that consist of method calls starting at the top and working toward the bottom (try drawing one of the lines BEFORE you draw the red rectangle and watch what happens - it will be covered over by the rectangle and made invisible. The order of lines in the code sequence is important). Sequential lines of code form the basic core of any computer program. Experiment with all the different drawing methods and see what you can discover.
Bugs and debugging
One thing that you are going to notice as you learn about programming is that you tend to make a fair number of mistakes and assumptions that cause your program either: 1) to not compile, or 2) to produce output that you don't expect when it executes. These problems are referred to as bugs and the act of removing them is called debugging. About half of the time of any programmer is spent debugging.
You will have plenty of time and opportunity to create your own bugs, but to get more familiar with the possibilities let's create a few. In your program, try erasing one of the semicolons at the end of a line and try compiling the program with javac. The compiler will give you an error message. This is called a compiler error, and you have to eliminate all of them before you can execute your program. Try mispelling a function name, leaving out a "{", eliminating one of the import lines, etc. to get used to different compiler errors. The first time you see a certain type of compiler error it can be frustrating, but by experimenting like this with known errors that you create on purpose you can get familiar with many of the common errors.
A bug, also known as an execution (or run-time) error, occurs when the program compiles fine and runs, but then does not produce the output you planned on it producing. For example, this code produces a red rectangle with two diagonal lines across it:
g.setColor(Color.red);
g.fillRect(0, 0, 200, 200);
g.setColor(Color.black);
g.drawLine(0, 0, 200, 200);
g.drawLine(200, 0, 0, 200);
The following code, on the other hand, produces just the red rectangle (which covers over the two lines):
g.setColor(Color.black);
g.drawLine(0, 0, 200, 200);
g.drawLine(200, 0, 0, 200);
g.setColor(Color.red);
g.fillRect(0, 0, 200, 200);
The code is almost exactly the same but looks completely different when it executes. If you are expecting to see two diagonal lines then the code in the second case contains a bug.
Here's another example:
g.drawLine(0, 0, 200, 200);
g.drawRect(0, 0, 200, 200);
g.drawLine(200, 0, 0, 200);
This code produces a black outlined box and two diagonals. This next piece of code produces only one diagonal:
g.drawLine(0, 0, 200, 200);
g.drawRect(0, 0, 200, 200);
g.drawLine(0, 200, 0, 200);
Again, if you expected to see two diagonals then the second piece of code contains a bug (look at the second piece of code until you understand what went wrong). This sort of bug can take a long time to find because it is subtle.
You will have plenty of time to practice finding your own bugs. As I say, the average programmer spends about half of his or her time tracking down, finding and eliminating bugs. Try not to get frustrated when they occur - they are a normal part of programming life.
Variables
All programs use variables to hold pieces of data tempararily. For example, if at some point in a program you ask a user for a number, you will store it in a variable so that you can use it later.
Variables must be defined (or declared) in a program before you can use them, and you must give each variable a specific type. For example, you might declare one variable to have a type that allows it to hold numbers, and another variable to have a type so it can hold a person's name. [Because Java requires you to specifically define variables before you use them and state the type of value you plan to store in a variable, Java is called a strongly typed language. Certain languages don't have these requirements. In general, when creating large programs, strong typing tends to reduce the number of accidental programming errors that you make.]
import java.awt.Graphics;
import java.awt.Color;
public class FirstApplet extends java.applet.Applet
{
public void paint(Graphics g)
{
int width = 200;
int height = 200;
g.drawRect(0, 0, width, height);
g.drawLine(0, 0, width, height);
g.drawLine(width, 0, 0, height);
}
}
In this program we have declared two variables named width and height. We have declared their type to be int. An int variable can hold an integer (a whole number like 1, 2, 3...). We have initialized both variables to 200. We could have just as easily said:
int width;
width = 200;
int height;
height = 200;
The first form is simply a bit quicker to type.
The act of setting a variable to its first value is called initializing the variable. A common programming bug occurs when you forget to initialize a variable. To see that bug, try eliminating the initialization part of the code (the "= 200" part) and recompile the program to see what happens. What you will find is that the compiler complains about this problem. That's a very nice feature, by the way. It will save you lots of wasted time.
There are two types of variables in Java - simple (or "primitive") variables and "classes". The int type is simple. The variable can hold a number. That is all that it can do. You declare an int , set it to a value and use it. Classes, on the other hand, can contain multiple parts and have methods that make them easier to use. A good example of a straightforward class is the Rectangle class, so let's start with it.
One of the limitations of the program we have been working on so far is the fact that it assumes the window is 200 by 200 pixels. What if we wanted to ask the window, "How big are you?" and then size our rectangle and diagonals to fit? If you go back and look on the documentation page for the Graphics class (java.awt.Graphics.html - the file that lists all the available drawing functions), you will see that one of the functions is called getClipBounds. Click on this function name to see the full description. This function accepts no parameters but instead returns a value of type Rectangle. The rectangle it returns contains the width and height of the available drawing area. If you click on Rectangle in this documentation page you will be taken to the documentation page for the Rectangle class (java.awt.Graphics.html). Looking in the Variable Index section at the top of the page that this class contains 4 variables named x, y, width and height. What we want to do, therefore, is get the clip boundary rectangle using getClipBounds and then extract the width and height from that rectangle and save the values in the width and height variables we created in the previous example. Like this:
import java.awt.Graphics;
import java.awt.Color;
import java.awt.Rectangle;
public class FirstApplet extends java.applet.Applet
{
public void paint(Graphics g)
{
int width;
int height;
Rectangle r;
r = g.getClipBounds();
width = r.width - 1;
height = r.height - 1;
g.drawRect(0, 0, width, height);
g.drawLine(0, 0, width, height);
g.drawLine(width, 0, 0, height);
}
}
When you run this example, what you will notice is that the rectangle and diagonals exactly fit the drawing area. Plus, when you change the size of the window the rectangle and diagonals redraw themselves at the new size automatically. There are five new concepts introduced in this code so let's look at them:
Java supports several simple variable types. Here are three of the most common:
float diameter = 10;
float radius;
float volume;
radius = diameter / 2.0;
volume = 4.0 / 3.0 * 3.14159 * radius * radius * radius;
The first calculation says, "divide the value in the variable named diameter by 2.0 and place the result in the variable named radius." You can see that the "=" sign here means, "place the result from the calculation on the right into the variable named on the left".
Looping
One of the things that computers do very well is perform repetetive calculations or operations. In the previous sections we have seen how to write "sequential blocks of code", so the next thing we should discuss is the techniques for causing a sequential block of code to occur repeatedly.
For example, let's say that I ask you to draw the following figure:

A good place to start would be to draw the horizontal lines, like this:

One way to draw the lines would be to create a sequential block of code:
import java.awt.Graphics;
public class FirstApplet extends java.applet.Applet
{
public void paint(Graphics g)
{
int y;
y = 10;
g.drawLine(10, y, 210, y);
y = y + 25;
g.drawLine(10, y, 210, y);
y = y + 25;
g.drawLine(10, y, 210, y);
y = y + 25;
g.drawLine(10, y, 210, y);
y = y + 25;
g.drawLine(10, y, 210, y);
y = y + 25;
g.drawLine(10, y, 210, y);
y = y + 25;
g.drawLine(10, y, 210, y);
y = y + 25;
g.drawLine(10, y, 210, y);
y = y + 25;
g.drawLine(10, y, 210, y);
}
}
[For some new programmers the statement "y = y + 25;" looks odd the first time they see it. What it means is, "take the value currently in the variable y, add 25 to it and place the result back into the variable y." So if y contains 10 before the line is executed it will contain 35 immediately after the line is executed.]
Most people who look at this code immediately notice that it contains the same two lines repeated over and over. In this particular case the repetition is not so bad, but you can imagine that if you wanted to create a grid with thousands of rows and columns, this approach would make program-writing very tiring. The solution to this problem is a loop, as shown below:
import java.awt.Graphics;
public class FirstApplet extends java.applet.Applet
{
public void paint(Graphics g)
{
int y;
y = 10;
while (y <= 210)
{
g.drawLine(10, y, 210, y);
y = y + 25;
}
}
}
When you run this program, you will see that it draws 9 horizontal lines 200 pixels long.
The while statement is a looping statement in Java. The statement tells Java to behave in the following way. At the while statement, Java looks at the expression in the parentheses and asks, "is y less than or equal to 210?":
We can complete our grid by adding a second loop to the program, like this:
import java.awt.Graphics;
public class FirstApplet extends java.applet.Applet
{
public void paint(Graphics g)
{
int x, y;
y = 10;
while (y <= 210)
{
g.drawLine(10, y, 210, y);
y = y + 25;
}
x = 10;
while (x <= 210)
{
g.drawLine(x, 10, x, 210);
x = x + 25;
}
}
}
You can see that a while statement has three parts. First there is an itialization step that sets y to 10. Then there is an evaluation step inside the parentheses of the while statement. Then, somewhere in the while statement there is an increment step that increases the value of y.
Java supports another way of doing the same thing that is a little more compact than a while statement. It is called a for statement. If you have a while statement that looks like this:
y = 10;
while (y <= 210)
{
g.drawLine(10, y, 210, y);
y = y + 25;
}
Then the equivilent for statement looks like this:
for (y = 10; y <= 210; y = y + 25)
{
g.drawLine(10, y, 210, y);
}
You can see that all that the for statement does is condense the intitalization, evaluation and incrementing lines into a short, single line. It simply shortens the programs you write - nothing more.
While we are here, two quick points about loops:
To get some practice with looping, try writing programs to draw the following figures:

Links
|
How Stuff Works (http://www.howstuffworks.com) is a production of BYG Publishing, Inc. http://www.bygpub.com - questions@bygpub.com P.O. Box 40492 - Raleigh, NC 27629 |
© 1998 BYG Publishing, Inc. All rights reserved.