Usage of the [Java] inner class

Source: Internet
Author: User

 PackageTest.file;ImportJava.io.File;ImportJava.io.FilenameFilter;/*** Use of internal classes *@authorFrost.yen * @e-mail [email protected] * @date April 13, 2016*/ Public classTestFile03 { Public Static voidMain (string[] args) {NewTestFile03 (). run (); }    Private voidrun () {File F=NewFile ("E:\\java\\examples\\to learn\\src\\test\\file");        System.out.println (F.exists ());        System.out.println (F.isfile ());        System.out.println (F.isdirectory ()); //string[] Fns = F.list ();//do not filter filesstring[] Fns = F.list (NewJavafilefilter ());//Filter Files         for(String Fn:fns) {System.out.println (FN); } System.out.println ("---------------------------------"); }    /*** Write a class implementation filenamefilter is specifically used to filter the file * (if the class is only accessible inside a class, you can write the class directly inside the class * This class is not accessible externally, this class is called an inner class, the inner class must be static after the Can be declared, so cannot be used in the method of * static) **/    classJavafilefilterImplementsfilenamefilter{@Override Public BooleanAccept (File dir, String name) {//The result of filtering is to display a value that returns True            if(Name.endswith (". Java"))return true; Else return false; }    }}

[Java] inner class usage

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.