search for: applybrake

Displaying 1 result from an estimated 1 matches for "applybrake".

2008 Feb 05
2
help with oop in R - class structure and syntex
...gear = startGear; cadence = startCadence; speed = startSpeed; } // *the Bicycle class has four methods* public void setCadence(int newValue) { cadence = newValue; } public void setGear(int newValue) { gear = newValue; } public void applyBrake(int decrement) { speed -= decrement; } public void speedUp(int increment) { speed += increment; } } Could one of the R experts please illustrate the R class syntex for writing the R equivalent of the Java Bicycle class above? Also, in Java, inheritance is done like t...