当前类:
package com.demo2;public class NewPhone {String str="hhhhhhhh";public void testNum(){System.out.println("str :" + this.str);}}
执行:
package com.demo2;public class DemoPhone {public static void main(String[] args) {NewPhone newPhone=new NewPhone();newPhone.testNum();}}
