[Java] Anonymous inner class

Source: Internet
Author: User

 PackageTest.file;ImportJava.io.File;ImportJava.io.FilenameFilter;/*** Anonymous Internal class *@authorFrost.yen * @e-mail [email protected] * @date April 13, 2016*/ Public classTESTFILE04 { Public Static voidMain (string[] args) {NewTestFile04 (). 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 files                /*** Anonymous inner class, which has no name, is implemented before the code is returned * The only thing that exists in this way is that there is only one way to recommend this class. * If two or more methods are used, it is recommended to use an internal class */string[] FNS= F.list (NewFilenameFilter () {@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; }        });//Filter Files         for(String Fn:fns) {System.out.println (FN); } System.out.println ("---------------------------------"); }}

[Java] Anonymous inner class

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.