Results 1 to 3 of 3
Thread: Java tutorial bike example
- 03-18-2012, 06:42 AM #1
bad, but inconsistent
- Join Date
- Mar 2012
- Posts
- 3
- Rep Power
- 0
Java tutorial bike example
I tried to make the bike examples from the java tutorial work ( except for switching out a bike for a car), but whenever i try to compile, it says that there is no main method. From what I had gleaned from the tutorial, I didn't need one for a class that just sets values.
Also, is there a special way to put code in, or am i just supposed to copy-paste?
class Car {
// Problem with cmd prompt saying
//I'm not putting in a method body
int rpm = 0;
int speed = 0;
int gear;
// next three "voids" used to dertermine
// how to change the speed, gear, and rpm values.
void changeRpm (int newValue) {
rpm = newValue;
}
void changeSpeed (int newValue) {
speed = newValue;
}
void changeGear (int newValue) {
gear = newValue;
}
void printStates () {
System.out.println ("rpm:" + rpm+
"speed:" + speed +
"gear:" + gear);
}
}
class Testdrive {
public static void main(String[] args) {
//create car
Car car1 = new Car();
/*
* Invoking methods on this object
*/
car1.changeGear(4);
car1.changeSpeed(40);
car1.changeRpm(2100);
car1.printStates();
}
}
- 03-18-2012, 06:49 AM #2
bad, but inconsistent
- Join Date
- Mar 2012
- Posts
- 3
- Rep Power
- 0
Re: Java tutorial bike example
Notepad is the ... IDE? that I am using.
- 03-18-2012, 06:51 AM #3
bad, but inconsistent
- Join Date
- Mar 2012
- Posts
- 3
- Rep Power
- 0
Similar Threads
-
java Tutorial
By raj.mscking@gmail.com in forum Forum LobbyReplies: 2Last Post: 02-02-2012, 06:28 AM -
Making the bike pedal
By jinglylime in forum New To JavaReplies: 0Last Post: 03-22-2011, 06:53 AM -
Sun java tutorial in pdf?
By makpandian in forum New To JavaReplies: 2Last Post: 06-29-2009, 09:25 PM -
Best Tutorial for Java GUI ?
By Ms.Ranjan in forum New To JavaReplies: 1Last Post: 09-13-2008, 01:22 AM -
Java 5 Tutorial
By Ganeshag777 in forum New To JavaReplies: 1Last Post: 08-18-2008, 06:38 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks