build/core/config.mk 文件 # This is included by the top-level Makefile. # It sets up standard variables based on the # current configuration and platform, which # are not specific to what is being bui
定义人类的Class public class Person{// 枚举类型,用于表示性别。为节省内存,使用byte。public enum Sex : byte{Male = 0, Female}// 私有属性:姓名,性别,年龄,身高,体重private string name;private Sex sex;private byte age;private float