假设您有变量public interface IUpgradeable<TUpgrade> where TUpgrade : IUpgrade
{
TUpgrade UpgradeEntity{ get; }
}
public interface ISomeUpgrade : IUpgrade
{
// ...
}
public interface IUpgrade
{
// ...
}
public class SomeClass : IUpgradeable<ISomeUpgrade>
{
public ISomeUpgrade UpgradeEntity{ get; }
}
和指针int num
。 {(1}}和int* cell
中存储的值是否会对cell
或num
有所影响?
答案 0 :(得分:1)
cell = &num
表示单元格的内容/值等于num。
的地址*cell = num
表示存储在单元格中的地址的内容,即指针指向的值,将等于num的值。