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

10 ref 和 out 之间的差别

时间:2018-11-10 12:30:43      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:tracking   lease   nal   release   之间   article   赋值   tis   pos   


(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 之间的差别

标签:tracking   lease   nal   release   之间   article   赋值   tis   pos   

原文地址:https://www.cnblogs.com/ldxsuanfa/p/9938568.html

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