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

你可能感兴趣的文章
使用DBCP连接池对连接进行管理
查看>>
【洛谷】【堆+模拟】P2278 操作系统
查看>>
hdu3307 欧拉函数
查看>>
Spring Bean InitializingBean和DisposableBean实例
查看>>
Solr4.8.0源码分析(5)之查询流程分析总述
查看>>
[Windows Server]安装系统显示“缺少计算机所需的介质驱动程序”解决方案
查看>>
[容斥][dp][快速幂] Jzoj P5862 孤独
查看>>
Lucene 学习之二:数值类型的索引和范围查询分析
查看>>
软件开发工作模型
查看>>
Java基础之字符串匹配大全
查看>>
面向对象
查看>>
lintcode83- Single Number II- midium
查看>>
移动端 响应式、自适应、适配 实现方法分析(和其他基础知识拓展)
查看>>
selenium-窗口切换
查看>>
使用vue的v-model自定义 checkbox组件
查看>>
[工具] Sublime Text 使用指南
查看>>
Hangfire在ASP.NET CORE中的简单实现方法
查看>>
Algorithm——何为算法?
查看>>
Web服务器的原理
查看>>
小强升职计读书笔记
查看>>