标签:第一个 需要 名称 步骤 https 移动 string blog name
一个英雄有姓名,血量,护甲等等状态
这些状态就叫做一个类的属性
步骤 1 : 属性的类型
属性的类型可以是基本类型,比如int整数,float 浮点数
也可以是类类型,比如String 字符串
public class Hero {
String name; //姓名
float hp; //血量
float armor; //护甲
int moveSpeed; //移动速度
}
步骤 2 : 属性名称
属性名称一般来说,都是小写
比如name
如果有多个单词组成,后面的单词的第一个字母大写
比如 moveSpeed
属性也是变量,所以需要满足 变量的命名规则
public class Hero {
String name; //姓名
float hp; //血量
float armor; //护甲
int moveSpeed; //移动速度
}
标签:第一个 需要 名称 步骤 https 移动 string blog name
原文地址:https://www.cnblogs.com/jeddzd/p/11371918.html