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

ref 关键字out关键字

时间:2014-05-22 16:04:40      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:class   c   ext   a   int   get   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace outAndref
{
class Program
{
static void Main(string[] args)
{
}

//ref修饰方法的参数,在调用的时候必须在变量之前加上ref关键字,只能传递变量,不能传递常量
//传递的时候 不是传递变量的值,而是传递变量的地址
//out 也是传递变量的地址,out必须在方法内赋值,ref可以修改其值,也可以不修改
//out侧重输出,ref侧重修改
static void TestOut(out int i)
{
i = 100;
}
static void TestRef(ref int i)
{
i++;
}
#region 【冒泡排序】
static void GetMaxAndMin(int[] arr, out int max, out int min)
{
//Array.Sort(arr);排序
for (int i = 0; i < arr.Length - 1; i++)
{
for (int j = 0; j < arr.Length - 1 - i; j++)
{
if (arr[j] > arr[j + i])
{
int temp = arr[j];
arr[j] = arr[j + i];
arr[j + 1] = temp;
}
}
}
max = arr[arr.Length - 1];
min = arr[0];
}
#endregion

#region[属性]
public string name;
public string Name //属性的返回值跟他封装的字段是没有关系的,跟他的get返回的类型有关系,也跟set赋值的类型也有关系
{
get {
return name;
}
set
{
if (value == "")
{
name = "hello world";
}else
{
name=value;
}
}
}

#endregion
}
}

ref 关键字out关键字,布布扣,bubuko.com

ref 关键字out关键字

标签:class   c   ext   a   int   get   

原文地址:http://www.cnblogs.com/sumg/p/3742759.html

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