1. 程式人生 > 其它 >SpringMVC中攔截器的使用

SpringMVC中攔截器的使用

 1 /**this
 2  *this關鍵字通常在形參名與屬性名一樣時使用this進行區分,也用於set方法中,將形參賦值給私有屬性,
 3  *在類的方法中使用this.屬性,this.方法的形式,通常情況下都省略不寫,特殊情況下就是形參與屬性重名,
 4  *也可以用於構造器中,在有參構造的情況下
 5  *
 6  */
 7 public class Demo3 {
 8     private int age;
 9 public Demo3(int age){//構造器的有參構造時,使用this進行區分
10     System.out.println(age);
11     this
.age=age; 12 } 13 14 public static void main(String[] args) { 15 Demo3 s=new Demo3(50); 16 s.setAge(9);//先賦值,再取值,set,get 17 System.out.println(s.getAge()); 18 } 19 20 public int getAge() { 21 this.age=15;//可以省略不寫this,因為沒有形參 22 return age; 23 } 24 25
public void setAge(int age) { 26 this.age = age; 27 if (age>10){ 28 System.out.println("cuowu");//this關鍵字通常用於set方法中,將形參賦值給私有屬性 29 }else { 30 System.out.println("zhenque"); 31 } 32 } 33 }