企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 类的写法: ## 类的属性在堆空间里 ## ## 类的方法在栈空间里 ~~~ package com.msb; /* * 创建类 :人类 * * * */ import com.sun.scenario.effect.impl.sw.sse.SSEBlend_SRC_OUTPeer; public class Person { //名词 int age; String name; double height; double weigh; public void eat(){ System.out.println("我喜欢吃饭"); } public void sleep(String addres){ System.out.println("我喜欢在"+addres+"睡觉"); } public String introduce(){ return "我的名字是"+name+"年龄是"+age+"身高是"+height+"体重是"+weigh; } } ~~~