声明方法跟内存分析

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;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值