mu_tou_man

导航

 

2015年6月4日

摘要: 原文链接: http://blog.csdn.net/tounaobun/article/details/8491392 假如说你想复制一个简单变量。很简单: int apples = 5; int pears = apples; 不仅仅是int类型,其它七种原始数据类型(boolean,char, 阅读全文
posted @ 2015-06-04 16:28 mu_tou_man 阅读(320) 评论(0) 推荐(0) 编辑
 
摘要: 接口定义: [修饰符] interface 接口名 [extends 父接口名列表] { [public] [static] [final] 常量; [public] [abstract] 方法; }1 public interface CalInterface 2 {3 ... 阅读全文
posted @ 2015-06-04 15:50 mu_tou_man 阅读(189) 评论(0) 推荐(0) 编辑