更 多...

Blog

 
 
 

耽于声色

2009-12-30 15:17:27 @~^_^ luancgy

耽于声色,追求对感觉的一种满足;它是对视、听、触、味和嗅等感觉的快乐体验的追求。

评论(0)
 
 

Hiren's BootCD

2009-12-05 22:00:50 @~^_^ luancgy

Hiren's BootCD is a wonderful live CD containing various programs such as Hard drive recovery, Hard Drive Partition, Hard Drive Backup, Hard Drive Testing, RAM (Memory) Testing, System Information, MBR (Master BootRecord), BIOS, MultiMedia, Password, NTFS (FileSystems), Antivirus, AntiSpy, Process, Windows Startup, Registry tools, Windows Cleaners, Optimizers, Tweakers, and many others... As it is a bootable CD, it can be useful even if the primary operating system cannot be booted. We may call it as an emergency cd which every computer technician or home user must have.


http://www.hirensbootcd.net/

评论(0)
 
 

Bicycle

2009-12-04 09:29:29 @~^_^ luancgy

public class Bicycle {
   
    // the Bicycle class has three fields
    public int cadence;
    public int gear;
    public int speed;
   
    // the Bicycle class has one constructor
    public Bicycle(int startCadence, int startSpeed, int startGear) {
        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;
    }
   
}

评论(0)