博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
结对review
阅读量:5334 次
发布时间:2019-06-15

本文共 726 字,大约阅读时间需要 2 分钟。

1 public class Something {2 void doSomething () 3 {4 private String s = "";5 int l = s.length();6 }7 }
1 interface Playable { 2 void play(); 3 } 4 interface Bounceable { 5 void play(); 6 } 7 interface Rollable extends Playable, Bounceable { 8 Ball ball = new Ball("PingPang"); 9 }10 class Ball implements Rollable {11 private String name;12 public String getName() {13 return name;14 }15 public Ball(String name) {16 this.name = name; 17 }18 public void play() {19 ball = new Ball("Football");20 System.out.println(ball.getName());21 }22 }
1 public class Something {2 public int addOne(final int x) {3 return ++x;4 }5 }

问题:1.局部变量前不能加修饰符 

2.在接口中定义的常量还是方法,前面都要修饰

3.被final修饰,不能被修改

 
 

转载于:https://www.cnblogs.com/mlpzxf/p/6612422.html

你可能感兴趣的文章
Jenkins + Maven + TestNG参数化调用测试用例
查看>>
UVa 10561 (SG函数 递推) Treblecross
查看>>
easyui实现前端页面CURD
查看>>
git工作区、暂存区、版本库之间的关系以及diff reset checkout相关的命令解析
查看>>
(8)What makes a good life? Lessons from the longest study on happiness
查看>>
Codeforces 433C. Ryouko's Memory Note (中位数,瞎搞,思维)
查看>>
201771010106东文财《面向对象程序设计(java)》实验13
查看>>
object修改对应manifest变更情况
查看>>
iOS常用的数学函数
查看>>
c#读取类库配置文件方法
查看>>
【BZOJ1036】树的统计
查看>>
小程序 图片上传方法
查看>>
修改linux文件权限命令:chmod
查看>>
Cglib代理
查看>>
php获取今天的时间戳
查看>>
20162330 2016-2017-2《程序设计与数据结构》第8周学习总结
查看>>
2017-2018-2 1723《程序设计与数据结构》第六周作业 总结
查看>>
基于fastweixin的微信开发环境搭建
查看>>
SQL随机数的生成
查看>>
python 高级知识点
查看>>