- String[] names = file.list(new FilenameFilter() {
- public boolean accept(File dir, String name) {
- if(name.endsWith(".java")) {
- return true;
- }
- return false;
- }//这个位置的分号,前面对应的是accept方法的{},最好不加
- });
- }
复制代码 java中你可以在任何一个一个后面没东西的{或}后面加;- public class test {;
- public test() {//只有这里不能加,因为下面的语句变成第二行,而super()要求在构造器的第一行
- super();
- };
- public test(int i) {;
- System.out.println(i);
- };
- public static void main(String[] args) {;
- // TODO Auto-generated constructor stub
- System.out.println(1);
- new test(5);
- };
- };
复制代码 |