1.final定义的类不能够有子类
2.final定义的方法,不可以被子类覆写;
2.使用final定义的变量就是常量,其值不能够被修改; priavte static fianl String STR = "常量" //全局常量