博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
传值调用与引用调用
阅读量:5332 次
发布时间:2019-06-14

本文共 624 字,大约阅读时间需要 2 分钟。

ContractedBlock.gif
ExpandedBlockStart.gif
传值调用与引用调用
 1None.gifusing System;
 2None.gif
 3None.gifclass MethodCall
 4ExpandedBlockStart.gifContractedBlock.gifdot.gif{
 5InBlock.gif    public static void Main() 
 6ExpandedSubBlockStart.gifContractedSubBlock.gif    dot.gif{
 7ExpandedSubBlockStart.gifContractedSubBlock.gif        /**//*
 8InBlock.gif         * 参数类型分为 in, ref, out 三种,默认为 in。
 9InBlock.gif         * in 类型在子方法中修改了对应变量后,主方法中的值不会发生改变。
10InBlock.gif         * ref 类型在子方法中修改了对应变量后,主方法中的值也会发生改变。
11InBlock.gif         * out 主方法中对应的变量不需要初始化。
12InBlock.gif         * 
13ExpandedSubBlockEnd.gif         */
        
14InBlock.gif        int a = 3, b = 4, c;
15InBlock.gif        Console.WriteLine("Before Method Call : a = {0}, b = {1}, c 未赋值", a, b);
16InBlock.gif        AMethod(a, ref b, out c);
17InBlock.gif        Console.WriteLine("After  Method Call : a = {0}, b = {1}, c = {2}", a, b, c);
18ExpandedSubBlockEnd.gif    }
19InBlock.gif
20InBlock.gif    public static void AMethod(int x, ref int y, out int z)
21ExpandedSubBlockStart.gifContractedSubBlock.gif    dot.gif{
22InBlock.gif        x = 7;
23InBlock.gif        y = 8;
24InBlock.gif        z = 9;
25ExpandedSubBlockEnd.gif    }
26ExpandedBlockEnd.gif}

转载于:https://www.cnblogs.com/geovindu/archive/2005/12/19/300521.html

你可能感兴趣的文章
逻辑代数定律、定理和恒等式
查看>>
邓白氏编码 申请
查看>>
关于nodejs的npm命令无反应的解决方案
查看>>
Linux远程登录
查看>>
ES6 异步编程解决方案 之 Promise 对象
查看>>
Alpha阶段第九次Scrum Meeting
查看>>
Linux自己安装redis扩展
查看>>
HDU 1016 Prime Ring Problem(dfs)
查看>>
苹果官方例子
查看>>
C#中结构体与字节流互相转换
查看>>
【矩阵快速幂】bzoj1297 [SCOI2009]迷路
查看>>
双线性插值
查看>>
TCP连接
查看>>
HTML-meta
查看>>
使用ubifs作为根文件系统的openwrt如何在进行sysupgrade时保存旧的配置
查看>>
Android 异步加载解决方案
查看>>
app 后端技术
查看>>
协程的原理及其在高并发服务中的应用
查看>>
Android的一个自定义的动态添加Dialog类
查看>>
js中对时间的操作
查看>>