时间:2021-05-19
一、
二、
三、代码例子
1.新建 PointClass.cs
namespace StructAndClass{ internal class PointClass { public PointClass(int x, int y) { X = x; Y = y; } public int X { get; set; } public int Y { get; set; } }}2.新建 PointStruct.cs
namespace StructAndClass{ internal struct PointStruct { public int X { get; set; } public int Y { get; set; } public PointStruct(int x, int y) { X = x; Y = y; } }}3.Program.cs
using System;namespace StructAndClass{ internal class Program { private static void Main(string[] args) { Console.WriteLine("PointStruct ====="); var pStruct = new PointStruct(10, 10); Console.WriteLine("初始值:x={0},y={1}", pStruct.X, pStruct.Y); ModifyPointStruct(pStruct); Console.WriteLine("调用 ModifyPointStruct() 后的值:x={0},y={1}", pStruct.X, pStruct.Y); Console.WriteLine(); Console.WriteLine("PointClass ====="); var pClass = new PointClass(10, 10); Console.WriteLine("初始值:x={0},y={1}", pClass.X, pClass.Y); ModifyPointClass(pClass); Console.WriteLine("调用 ModifyPointClass() 后的值:x={0},y={1}", pClass.X, pClass.Y); Console.Read(); } private static void ModifyPointStruct(PointStruct point) { Console.WriteLine("调用方法:ModifyPointStruct"); point.X = 20; point.Y = 20; Console.WriteLine("修改成的值:x={0}, y={1}", point.X, point.Y); } private static void ModifyPointClass(PointClass point) { Console.WriteLine("调用方法:ModifyPointClass"); point.X = 20; point.Y = 20; Console.WriteLine("修改成的值:x={0}, y={1}", point.X, point.Y); } }}4.结果:
【解析】
ModifyPointStruct(PointStruct point) 调用时修改的只是结构副本,所以原来的结构并没有发生变化;
ModifyPointClass(PointClass point) 调用时所修改的对象是原对象,因为参数传递过来的是一个引用地址,这地址指向原对象
四、总结
结构是值类型并在堆栈中传递,每次使用方法进行修改的都只是结构副本;
至于类,传递的是内存地址的引用,修改的就是初始值
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例展示了C#程序设计中String与string的区别,对于C#初学者来说有很好的参考借鉴价值。具体如下:一、区别分析:String:类,System.S
C#中结构类型和类类型在语法上非常相似,他们都是一种数据结构,都可以包括数据成员和方法成员。 结构和类的区别: 1、结构是值类型,它在栈中分配空间;而类
类与结构是C#程序设计中基本的数据类型,而初学者往往不能很好的分清二者之间的区别。本文就以附带实例形式加以说明。具体如下:一、基本概念:类:引用类型,存储在堆中
本文实例分析了C#中is与as的区别,分享给大家供大家参考。具体分析如下:一、C#类型的转换在c#中类型的转换分两种:显式和隐式,基本的规则如下:1、基类对象转
类与对象1、了解类:从这里开始,学习C#面向对象编程的基本内容,使用C#编程,所有的程序代码都放在类中,结构体是一个用户自定义的类型,是由其他类型组成的变量组,