Java code
== Java Code ==
see Java (programming language)
Java code is code made by using java, a Programming language. Java is able to be run by using Command Prompt, a program on every Microsoft computer. There are also a bunch of other programs that let you write and run java programs, such as Eclipse and NetBeansIDE. You will find many other programs at java.sun.comThis entry is not yet complete, and will be updated soon.
Object Orientation
Java is an Object Oriented programming language, so everything is inside of a class. There are multiple methods in a class, and statements are inside of a method. Methods symbolize what the Class can do. They are the verbs. So, there is a class called Dog. Now, you can put multiple methods inside the class. Now, what can a Dog do? A dog can jump, fetch, play, and bark. So there would be a jump method, a fetch method, a play method, and a bark method. Then, in a different class, you would create a Dog object. You do this by saying: Dog d=new Dog. 'Dog' is the name of the class, and is what the 'd' variable is going to be. 'd' is the name of the variable. The third 'Dog' is what you are trying to make 'd' a reference to. In this case, it has to be 'Dog'.
Javageek212 01:16, 12 October 2007 (UTC)