2012年3月13日
摘要: package com.returntest1;public class Test { int a = 0; public static void main(String args[]) { Test t = new Test(); System.out.println(t.method()); } private boolean method() { if (a == 1) { System.out.println("true---"); return true; } ... 阅读全文
posted @ 2012-03-13 11:18 snowdrop 阅读(669) 评论(0) 推荐(0) 编辑