集册 Java实例教程 使用私有访问控制:

使用私有访问控制:

欢马劈雪     最近更新时间:2020-01-02 10:19:05

529
使用私有访问控制:

class Logger { 
/*
nowjava.com - 时  代  Java 提供
*/

        private String format; 


        public String getFormat () { 

            return this.format; 

        } 


        public void setFormat (String fmt) { 

            if  (  (fmt.equals("common"))  ||  (fmt.equals("combined")) ) { 

                this.format = fmt; 

            } 

        } /**来自 nowjava.com - 时代Java**/

    }