码迷,mamicode.com
首页 > 其他好文 > 详细

10 ref 和 out 之间的区别

时间:2014-06-24 17:39:19      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   使用   2014   string   


(1) 两者都是按地址传递的,使用后都将改变原来的数值

(2) ref传进去的参数必须在调用前初始化,out不必
(3) ref传进去的参数在函数内部可以直接使用,而out不可
(4) ref传进去的参数在函数内部可以不被修改,但out必须在离开函数体前进行赋值

(5) ref是有进有出,out是只出不进


        string outString = "This is the original outString";
        Console.WriteLine(outString);
        outMethod(out outString);
        Console.WriteLine(outString);

        string refString = "This is the original ref string";
        Console.WriteLine(refString);
        refMethod(ref refString);
        Console.WriteLine(refString);



10 ref 和 out 之间的区别,布布扣,bubuko.com

10 ref 和 out 之间的区别

标签:class   blog   code   使用   2014   string   

原文地址:http://blog.csdn.net/u011685627/article/details/33370391

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!