码迷,mamicode.com
首页 > Windows程序 > 详细

C#控制台基础 ref,out同时存在不可以重载的实例

时间:2016-10-07 17:47:37      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

1、代码

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace ConsoleApplication2
 8 {
 9     class Program
10     {
11         static void Main(string[] args)
12         {
13 
14         }
15 
16         public void Hello(ref int a)
17         {
18             Console.WriteLine();
19         }
20         public void Hello(out int aa)
21         {
22             //必须在离开这个方法前对aa赋值
23             aa = 1;
24             Console.WriteLine();
25         }
26     }
27 
28 }

 

 

 

2、错误提示

技术分享

 

看到了木,两个方法仅仅在ref 与 out 上不同时,是不算重载的。

C#控制台基础 ref,out同时存在不可以重载的实例

标签:

原文地址:http://www.cnblogs.com/jinlingzi/p/5936232.html

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