[java]第一次用枚举类 枚举类:public enum Color { RED("红色", 1), GREEN("绿色", 2), BLANK("白色", 3), YELLO("黄色", 4); // 成员变量 private String name; private int index; public static final Color c = RED; // 构造...
在linux中开机自启动程序 在树莓派板子上想运行一个程序,能够开机自启动。网上试了半天各种回答,改了几回的rc.local,都不好使。最后用这个大神的方法可以了http://forum.ubuntu.org.cn/viewtopic.php?t=472420...