public class Computer{
private String hardDrive;
public void SwapHardDrive(Computer otherComputer){
String temp;
temp = otherComputer.hardDrive;
otherComputer.hardDrive = this.hardDrive;
this.hardDrive = temp;
}//end of SwapHardDrive method
}//end of Computer class
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment