zoukankan      html  css  js  c++  java
  • Java 学习笔记 (七) Java 参数

    head first java page 74

    实参: argument

    形参: parameter

    方法会运用形参, 调用的一方会传入实参.

    实参是传给方法的值.当它传入方法后就成了形参, 参数跟局部变量是一样的.   ?

    page76

    方法可以有多个参数, 在声明的时候要用逗号分开, 传入的时候也用逗号分开 例:

    1 void go() {
    2     TestStuff t=new TestStuff();
    3     t.takeTwo(12,34);
    4  }
    5 
    6 void takeTwo(int x,int y){
    7     int z = x+y;
    8     System.out.println("Total is "+z);
    9 }

    也可以将变量当作参数传入,只要类型相符就可以.例:

     1  void go() {
     2      int foo=7;
     3      int bar=3;
     4      t.takeTwo(12,34);
     5   }
     6  
     7  void takeTwo(int x,int y){
     8      int z = x+y;
     9      System.out.println("Total is "+z);
    10  }
  • 相关阅读:
    javajava.lang.reflect.Array
    基于annotation的spring注入
    jquery插件
    spring的注入方式
    jqueryajax
    javascript基础
    xml基础
    js 获取FCKeditor 值
    TSQL 解析xml
    Linq
  • 原文地址:https://www.cnblogs.com/cheese320/p/8276944.html
Copyright © 2011-2022 走看看