博客
关于我
强烈建议你试试无所不能的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

你可能感兴趣的文章
Linux目录结构
查看>>
learning awk
查看>>
LeetCode-Strobogrammatic Number
查看>>
luoguP3414 SAC#1 - 组合数
查看>>
五一 DAY 4
查看>>
关于System.__ComObject一些问题
查看>>
java stringbuffer二
查看>>
[hihoCoder] 拓扑排序·一
查看>>
(转)接口测试用例设计(详细干货)
查看>>
js Math对象方法 (个人学习笔记)
查看>>
helm-chart-2-chart结构和简单模板
查看>>
转载Repository 和Unit of work的使用说明
查看>>
redis中各种数据类型对应的jedis操作命令
查看>>
POJ 3461 还是两种方法
查看>>
【译】SSH隧道:本地和远程端口转发
查看>>
win8.1安装Python提示缺失api-ms-win-crt-runtime-l1-1-0.dll问题
查看>>
mysql授权grant
查看>>
图片点击轮播(三)-----2017-04-05
查看>>
【乱搞】【AOJ-574】爱就大声说出来
查看>>
RESTful记录-RESTful服务
查看>>