package com.lrq.oop;
import java.util.jar.Attributes.Name;
/**
*
* @author 李瑞琦
*
*
*/
public class TestStudent {
String name;
int age;
String gender;
Computer computer;
public void study() {
System.out.println("正在学习");
}
public static void main(String[] args) {
TestStudent testStudent1 = new TestStudent();
testStudent1.name = "张三";
Computer comp1 = new Computer();
comp1.cpu = "amd";
Computer comp2 = new Computer();
comp2.cpu = "amd";
testStudent1.computer = comp1;
TestStudent testStudent2 = new TestStudent();
testStudent2.name = "李四";
testStudent1.study();
}
}
class Computer {
String keyboard;
String mainboard;
String mouse;
String cpu;
String monitor;
}