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

你可能感兴趣的文章
shell - 常识
查看>>
mssql sqlserver 使用sql脚本 清空所有数据库表数据的方法分享
查看>>
分层图最短路【bzoj2763】: [JLOI2011]飞行路线
查看>>
linux下编译复数类型引发的错误:expected unqualified-id before '(' token
查看>>
codeforces 1041A Heist
查看>>
字典常用方法
查看>>
Spring Cloud Stream消费失败后的处理策略(三):使用DLQ队列(RabbitMQ)
查看>>
python的猴子补丁monkey patch
查看>>
架构模式: API网关
查看>>
正则验证积累
查看>>
Linux学习-汇总
查看>>
83. 删除排序链表中的重复元素
查看>>
bzoj1048 [HAOI2007]分割矩阵
查看>>
python中的__init__ 、__new__、__call__等内置函数的剖析
查看>>
Java中的编码
查看>>
PKUWC2018 5/6
查看>>
As-If-Serial 理解
查看>>
MYSQL SHOW VARIABLES简介
查看>>
雷林鹏分享:Redis 简介
查看>>
netfilter 和 iptables
查看>>