在java中怎么定義一個方法?
引用: 在這個程序里面的a.getx()自定義方法,就需要返回值. 因為前面的實例變量x為整型 所以返回值類型也要是整型 然后用return返回x的值50 用a.getx()調用 使用System.out.println();輸出return返回來的值 public class Test{ private int x=50; public int getx(){ return x; } public static void main(String[] args){ Test a=new Test(); System.out.println(a.getx()); } } 運行結果為50