C# 传值参数

传值参数

1.值类型

  • 值参数创建变量的副本:当传递值参数时,实际上是创建了原始变量的一个副本,然后将副本传递给方法。
  • 对值参数的操作永远不影响变量的值:由于是复制了一份新的副本,所以对副本进行操作不会影响原始变量的值。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ParametersExample
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Student stu=new Student();
            int y = 100;
            stu.AddOne (y);
            Console.WriteLine("y="+y);
            Console.ReadKey();
        }
    }

    class Student
    {
        public void AddOne(int x)
        {
            x = x + 1;
            Console.WriteLine(x);

        }
    }
}

在该代码中:AddOne 方法中的 x 是按值传递的,即 y 的值被复制给了 x,而在 AddOne 方法中对 x 的修改不会影响到 y 的原始值。

由此可知,在 C# 中,当我们通过值传递方式将一个变量传递给方法时,该方法内部对参数所做的任何修改都不会影响到原始变量的值。


2.引用类型1

我们都知道,引用类型的变量与实例时分开的

引用类型的变量会引用引用类型的实例,本质上是,引用类型的变量存储的值是引用类型的实例在堆内存当中的地址

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

namespace ParametersExample
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Student stu = new Student() { Name = "Tim" };
            SomeMethod(stu);
            Console.WriteLine("{0},{1}", stu.GetHashCode(), stu.Name);
            Console.ReadKey ();
        }
        static void SomeMethod(Student stu)
        {
            stu = new Student() { Name = "Tim" };
            Console.WriteLine("{0},{1}",stu.GetHashCode(),stu.Name);
        }
    }

    class Student
    {
        public string Name { get; set; }    
    }
}

当运行这段代码时:

  1. SomeMethod 方法中创建了一个新的 Student 实例,并打印了它的哈希码和名称。因为两次都设置 Name 为 "Tim",所以输出的名称将是 "Tim"
  2. 虽然 SomeMethod 方法内部改变了 stu 的引用指向了一个新的实例,但 Main 方法中的 stu 实例没有改变,因此Main 方法中输出的是原始 stu 实例的哈希码和名称。

注意,在实际编程中,很少会在方法内部创建一个新的对象。


3.引用类型2

通过值参数,只更新对象不创建新对象

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

namespace ParametersExample
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Student stu = new Student() { Name = "Tim" };
            UpdateObject(stu);
            Console.WriteLine("{0},{1}", stu.GetHashCode(), stu.Name);
            Console.ReadKey ();
        }
        static void UpdateObject(Student stu)
        {
            stu.Name = "Tim" ;
            Console.WriteLine("{0},{1}",stu.GetHashCode(),stu.Name);
        }
    }

    class Student
    {
        public string Name { get; set; }    
    }
}

注意,在实际编程中,很少通过传进来的参数,修改引用对象的值。

对于方法而言,输出主要靠返回值。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值