Board logo

標題: 自定函式 [打印本頁]

作者: 葉桔良    時間: 2022-1-8 15:29     標題: 自定函式

  1. package function_test;

  2. public class test {

  3.         public static void main(String[] args) {
  4.                 int a=1,b=5;
  5.                 System.out.print(plus(a,b));
  6.         }

  7.         static int plus(int a,int b){
  8.                 return a+b;
  9.         }
  10. }
複製代碼

作者: 王儀華    時間: 2022-5-20 20:23

  1. public class Ch01 {
  2.         public static void main(String[] args){
  3.                 int a=1, b=5;
  4.                 plus s = new plus();
  5.                 System.out.print(s.p(a,b));

  6.         }
  7. }

  8. class plus{
  9.         plus(){
  10.                
  11.         }
  12.         static int p(int a, int b) {
  13.                 return a+b;
  14.         }
  15. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2