如何使用void方法更改变量的值?

时间:2016-10-17 16:06:35

标签: android void abbreviation

感谢您的回答。 我试图用void方法改变变量的值。

public void function(int x){
    x=x*x;
    System.out.println(x);
}
public void main(String args){
    int p=5;
    System.out.println(p);    //The output would be 5.
    function(p);             //The output would be 25.
    System.out.println(p);    //The output would be 5, again.
}

通过调用方法,我可以做些什么来改变“p”的值?

0 个答案:

没有答案