两个错误,第一 楼主最后少了“}”;
第二 "testStack " + this ;这个涉及的 类型转换问题,它好像尝试把“testStack"尝试转换为类testStack,
看我的运行结果 具体深层原因就不知道了- class TestStack {
-
- // public String toString(){
- // return ("testStack "+this);
- // }
- void method(){
- System.out.println(("this"+this) instanceof TestStack);
- }
-
-
- public static void main(String[] args) {
- TestStack A = new TestStack();
- System.out.println(A.toString() instanceof String);
-
- A.method();
- }
- }
复制代码
|
|