传值参数 -1值类型 -2引用类型
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//传值参数-1、值类型 2、引用类型
namespace PamatetersExample
{
class Program
{
static void Main(string[] args)
{
Student oldStu = new Student() { Name = "Marry" };
SomeMethod(oldStu);
Console.WriteLine("{0},{1}", oldStu.GetHashCode(), oldStu.Name);
}
static void SomeMethod(Student stu)
{
//引用类型,在原对象上修改
stu.Name = "Hello";//side-effect 副作用
Console.WriteLine("{0},{1}", stu.GetHashCode(), stu.Name);
//引用类型,创建一个新对象
stu = new Student() { Name = "Tom" };
Console.WriteLine("{0},{1}",stu.GetHashCode(),stu.Name);
}
}
class Student
{
public string Name { get; set; }
}
}
结果
46104728,Hello
12289376,Tom
46104728,Hello
请按任意键继续. . .
结论
- 1、传值类型 中引用类型 是可以改变原对象的值(有副作用 side-effect)
- 2、理论上传值参数 是不会改变原变量的值 (与原变量无关,只是复制啦一个原变量副本去操作新对象)