加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
007-引用类型.cs 613 Bytes
一键复制 编辑 原始数据 按行查看 历史
using System;
namespace _007_引用类型
{
public class Point { public int X, Y; }
class Program
{
static void Main(string[] args)
{
Point p1 = new Point();
p1.X = 7;
Point p2 = p1; // 复制了p1的引用
Console.WriteLine(p1.X); // 7
Console.WriteLine(p2.X); // 7
p1.X = 9; // 改变p1.X的值
Console.WriteLine(p1.X); // 9
Console.WriteLine(p2.X); // 9
// 显示了p1和p2是指向同一对象的两个不同引用。
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化