美文网首页
Ref、Out、In

Ref、Out、In

作者: 津涵 | 来源:发表于2019-02-02 13:41 被阅读0次

Ref

??? 传引用???

Out(a new feature of C# 7)

string input1 = Console.ReadLine();
if (int.TryParse(input1,out int result1))
{
Console.WriteLine($"result:{result1}");
}
else
{
Console.WriteLine("Not a number.");
}
注:
(1)Console.ReadLine() 获得用户输入
(2)TryParse is declared to return a bool type whether the parsing is successful or not.
(3)public static bool TryParse(string s, out int result);
Invoking this method, the result variable doesn’t need to be initialized beforehand; the variable is initialized within the method.

In

The in modifier guarantees the data that is sent into the method does not change (when passing a value type).

相关文章

  • C# ref & out

    1. What is ref & out ? 参数传递时按引用传递参数 2.Why need ref & out ...

  • Out And Ref

    在C#中Out和Ref使用方法基本一样。Out使用时其实参数可以不赋值,在使用时在实参数前面加上Out,如下:Ou...

  • Ref、Out、In

    Ref ??? 传引用??? Out(a new feature of C# 7) string input1 =...

  • ref和out区别

    区别一 ref out 结果:ref那段代码顺利编译并输出 Good Luck! ,而out那段代码无法通过编译提...

  • 17.03.12 .Net基础(三)

    out参数 out参数侧重于在函数中返回多个值 out参数要求必须在方法的内部为其赋值 ref参数 ref参数侧重...

  • ref 和 out

    ref:如果有ref修饰的参数那么该参数需要在传递之前初始化。 out:如果有out修饰的参数,那么该参数可以不需...

  • C#中out和ref之间的区别

    在本文,你将学会C#中 out 和 ref各自的区别,依旧具体使用场景。 共同点out、ref都是传递引用(内存地...

  • git push时报错

    remote: error: refusing to update checked out branch: ref...

  • ref关键字和out关键字

    1.怎么用: ref关键字主要用来传递参数,而out关键字用来返回结果 相同点:ref和out都是按地址传递(值类...

  • 235 ref和out关键字

    ref关键字 使用ref关键字可以将值类型变量按照引用方式传递 out关键字 使用out关键字可以让方法有多个返回...

网友评论

      本文标题:Ref、Out、In

      本文链接:https://www.haomeiwen.com/subject/kyessqtx.html