用java语言编程

用java语言编程定义一个表示学生的类student,成员变量有学号,姓名,性别,年龄,方法有获得学号,姓名,性别,年龄,修改年龄。创建student类及其对象,并测试其方法。

public class Thread1 implements Runnable {
 
    private int i = 0;
 
    public void run() {
 
        while(true){
 
            i++;
 
            if (i % 4 == 0) {
 
                System.out.println("*******");
 
            }
             
            if (i>100) {
                 
                break;
                 
            }
        }
    }
}
import java.util.Date;
 
public class Thread2 implements Runnable {
 
    public void run() {
 
        while (true) {
             
             try {
                Thread.sleep(10000);
                System.out.println(new Date().toLocaleString());   
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}public class Client {
     
    public static void main(String[] args) {
         
        Thread one = new Thread(new Thread1());
         
        Thread two = new Thread(new Thread2());
             
        one.start();
             
        two.start();
         
    }
 
}
温馨提示:答案为网友推荐,仅供参考
相似回答