例题4-7向一个方法的基本数据类型参数传值/4-8引用类型参数
摘要:
class Tom{void f(int x,double y){x=x+1;y=y+1;System.out.printf("参数x和y的值分别是:%d,%3.2f\n",x,y);}}public class Example4_7{public static void main(String args[]){int x=10;double y=12.58;Tom cat=new Tom();cat.f(x,y);System.out.printf("main方法中x和y的值仍然分别是:%d,%3.2f\n",x,y);}}class Jerry{in 阅读全文
posted @ 2013-03-20 22:49 快乐的铲屎官 阅读(179) 评论(0) 推荐(0) 编辑