独立的通用纪念品
Self-contained generic memento
亲爱的程序员们,
我似乎对 C# 中的引用如何工作缺乏一些了解。
案例:
我尝试实现某种 Memento 代理,它会包装一个接口并存储我们提供给方法调用的每个参数,并将这些参数存储到列表中。
只要有必要,我们就可以调用 RestoreState,对象会 "reset" 到原始状态。
代码:
消费者和模型对象
class Program
{
static void Main(string[] args)
{
IMemento memento = new Memento();
PrestationInfo prestationInfo2 = new PrestationInfo { Advance = 2 };
memento.Add(prestationInfo2);
Console.WriteLine(prestationInfo2.Advance); //Expect 2
prestationInfo2.Advance = 1;
Console.WriteLine(prestationInfo2.Advance); //Expect 1
memento.RestoreState();
Console.WriteLine(prestationInfo2.Advance); //Expect 2, but still 1
Console.ReadKey();
}
}
[Serializable]
public class PrestationInfo
{
public int Advance { get; set; }
}
纪念品
public interface IMemento
{
void Add(object pItem);
void RestoreState();
}
public class Memento : IMemento
{
public Memento()
{
MementoList = new Dictionary<long, object>();
ReferenceList = new List<object>();
ObjectIDGenerator = new ObjectIDGenerator();
}
private ObjectIDGenerator ObjectIDGenerator { get; set; }
private Dictionary<long, object> MementoList { get; set; }
private List<object> ReferenceList { get; set; }
public void Add(object pItem)
{
bool firstTime;
long id = ObjectIDGenerator.GetId(pItem, out firstTime);
if (firstTime)
{
var mementoObject = DeepCopy(pItem);
MementoList.Add(id, mementoObject);
ReferenceList.Add(pItem);
}
}
public void RestoreState()
{
for (int i = 0; i < ReferenceList.Count; i++)
{
object reference = ReferenceList[i];
bool firstTime;
long id = ObjectIDGenerator.GetId(reference, out firstTime);
if (MementoList.ContainsKey(id))
{
object mementoObject = MementoList[id];
reference = mementoObject;
//reference = PropertyCopy<PrestationInfo>.CopyFrom(mementoObject as PrestationInfo); //Property copy
//Interlocked.Exchange(ref reference, mementoObject); //Also tried this
}
}
}
private static TCopy DeepCopy<TCopy>(TCopy pObjectToCopy)
{
using (MemoryStream memoryStream = new MemoryStream())
{
BinaryFormatter binaryFormatter = new BinaryFormatter();
binaryFormatter.Serialize(memoryStream, pObjectToCopy);
memoryStream.Position = 0;
return (TCopy)binaryFormatter.Deserialize(memoryStream);
}
}
}
额外信息
我的猜测是,我 doing/understand 列表有问题。
我也尝试了 Interlocked.Exchange,尝试使用 "ref",使用 WeakReference 并将对象存储到 CareTaker 对象中(并将该 CareTaker 存储到列表中),实现一些复制 属性 东西...
而且...我就是看不到它。
我的预期结果是 PrestationInfo.Advance 属性 包含值 2。但它保持
看来问题出在您对 .NET 中引用的理解上
public void RestoreState()
{
for (int i = 0; i < ReferenceList.Count; i++)
{
object reference = ReferenceList[i];
bool firstTime;
long id = ObjectIDGenerator.GetId(reference, out firstTime);
if (MementoList.ContainsKey(id))
{
object mementoObject = MementoList[id];
reference = mementoObject;
//reference = PropertyCopy<PrestationInfo>.CopyFrom(mementoObject as PrestationInfo); //Property copy
//Interlocked.Exchange(ref reference, mementoObject); //Also tried this
}
}
}
上面的 RestoreState 方法没有 return 任何东西,您严格地对引用进行操作,而不是它们的内部状态。在您的方法中 object reference
是本地引用。它与外部 prestationInfo2
不同,您的方法只是使 reference
指向(参考)先前保存的 presentationInfo2
.
状态副本
你可以这样修改它:
public object RestoreState()
{
for (int i = 0; i < ReferenceList.Count; i++)
{
object reference = ReferenceList[i];
bool firstTime;
long id = ObjectIDGenerator.GetId(reference, out firstTime);
if (MementoList.ContainsKey(id))
{
object mementoObject = MementoList[id];
reference = mementoObject;
return reference;
}
}
return null;
}
然后这样称呼它:
presentationInfo2 = memento.RestoreState();
如果您希望备忘录跟踪对象并神奇地恢复它们的状态,您将必须让对象本身知道引入耦合的备忘录或使用反射来修改跟踪引用内部状态。基本上,您不会将持久状态反序列化为新对象,而是使用反射将先前存储的内部状态覆盖到跟踪对象引用中。
尽管使用 WeakReference 存储引用要小心,否则你会发现自己遇到了内存泄漏的情况。
Memento.Add需要ref参数修饰符来访问原始引用类型指针。
https://msdn.microsoft.com/en-us/library/14akc2c7.aspx?f=255&MSPPError=-2147217396
试试这个:
更改Add
方法:
public long Add(object pItem)
{
bool firstTime;
long id = ObjectIDGenerator.GetId(pItem, out firstTime);
if (firstTime)
{
var mementoObject = DeepCopy(pItem);
MementoList.Add(id, mementoObject);
ReferenceList.Add(pItem);
}
return id; // i need my memento! LOL
}
您还应该添加此访问器方法:
public object GetRestoredState(long id)
{
return MementoList[id]; // you should put some range check here
}
现在您有了自己的 ID,可以通过这种方式获取恢复后的状态:
memento.RestoreState();
prestationInfo2 = memento.GetRestoredState(savedId); // <-- you got this when you called the Add()...
Console.WriteLine(prestationInfo2.Advance); //Expect 2, but still 1
跟进:您也可以将 IMemento
变成 IMemento<T>
,并相应地调整您的代码
亲爱的程序员们,
我似乎对 C# 中的引用如何工作缺乏一些了解。
案例:
我尝试实现某种 Memento 代理,它会包装一个接口并存储我们提供给方法调用的每个参数,并将这些参数存储到列表中。
只要有必要,我们就可以调用 RestoreState,对象会 "reset" 到原始状态。
代码:
消费者和模型对象
class Program
{
static void Main(string[] args)
{
IMemento memento = new Memento();
PrestationInfo prestationInfo2 = new PrestationInfo { Advance = 2 };
memento.Add(prestationInfo2);
Console.WriteLine(prestationInfo2.Advance); //Expect 2
prestationInfo2.Advance = 1;
Console.WriteLine(prestationInfo2.Advance); //Expect 1
memento.RestoreState();
Console.WriteLine(prestationInfo2.Advance); //Expect 2, but still 1
Console.ReadKey();
}
}
[Serializable]
public class PrestationInfo
{
public int Advance { get; set; }
}
纪念品
public interface IMemento
{
void Add(object pItem);
void RestoreState();
}
public class Memento : IMemento
{
public Memento()
{
MementoList = new Dictionary<long, object>();
ReferenceList = new List<object>();
ObjectIDGenerator = new ObjectIDGenerator();
}
private ObjectIDGenerator ObjectIDGenerator { get; set; }
private Dictionary<long, object> MementoList { get; set; }
private List<object> ReferenceList { get; set; }
public void Add(object pItem)
{
bool firstTime;
long id = ObjectIDGenerator.GetId(pItem, out firstTime);
if (firstTime)
{
var mementoObject = DeepCopy(pItem);
MementoList.Add(id, mementoObject);
ReferenceList.Add(pItem);
}
}
public void RestoreState()
{
for (int i = 0; i < ReferenceList.Count; i++)
{
object reference = ReferenceList[i];
bool firstTime;
long id = ObjectIDGenerator.GetId(reference, out firstTime);
if (MementoList.ContainsKey(id))
{
object mementoObject = MementoList[id];
reference = mementoObject;
//reference = PropertyCopy<PrestationInfo>.CopyFrom(mementoObject as PrestationInfo); //Property copy
//Interlocked.Exchange(ref reference, mementoObject); //Also tried this
}
}
}
private static TCopy DeepCopy<TCopy>(TCopy pObjectToCopy)
{
using (MemoryStream memoryStream = new MemoryStream())
{
BinaryFormatter binaryFormatter = new BinaryFormatter();
binaryFormatter.Serialize(memoryStream, pObjectToCopy);
memoryStream.Position = 0;
return (TCopy)binaryFormatter.Deserialize(memoryStream);
}
}
}
额外信息
我的猜测是,我 doing/understand 列表有问题。
我也尝试了 Interlocked.Exchange,尝试使用 "ref",使用 WeakReference 并将对象存储到 CareTaker 对象中(并将该 CareTaker 存储到列表中),实现一些复制 属性 东西...
而且...我就是看不到它。
我的预期结果是 PrestationInfo.Advance 属性 包含值 2。但它保持
看来问题出在您对 .NET 中引用的理解上
public void RestoreState()
{
for (int i = 0; i < ReferenceList.Count; i++)
{
object reference = ReferenceList[i];
bool firstTime;
long id = ObjectIDGenerator.GetId(reference, out firstTime);
if (MementoList.ContainsKey(id))
{
object mementoObject = MementoList[id];
reference = mementoObject;
//reference = PropertyCopy<PrestationInfo>.CopyFrom(mementoObject as PrestationInfo); //Property copy
//Interlocked.Exchange(ref reference, mementoObject); //Also tried this
}
}
}
上面的 RestoreState 方法没有 return 任何东西,您严格地对引用进行操作,而不是它们的内部状态。在您的方法中 object reference
是本地引用。它与外部 prestationInfo2
不同,您的方法只是使 reference
指向(参考)先前保存的 presentationInfo2
.
你可以这样修改它:
public object RestoreState()
{
for (int i = 0; i < ReferenceList.Count; i++)
{
object reference = ReferenceList[i];
bool firstTime;
long id = ObjectIDGenerator.GetId(reference, out firstTime);
if (MementoList.ContainsKey(id))
{
object mementoObject = MementoList[id];
reference = mementoObject;
return reference;
}
}
return null;
}
然后这样称呼它:
presentationInfo2 = memento.RestoreState();
如果您希望备忘录跟踪对象并神奇地恢复它们的状态,您将必须让对象本身知道引入耦合的备忘录或使用反射来修改跟踪引用内部状态。基本上,您不会将持久状态反序列化为新对象,而是使用反射将先前存储的内部状态覆盖到跟踪对象引用中。
尽管使用 WeakReference 存储引用要小心,否则你会发现自己遇到了内存泄漏的情况。
Memento.Add需要ref参数修饰符来访问原始引用类型指针。
https://msdn.microsoft.com/en-us/library/14akc2c7.aspx?f=255&MSPPError=-2147217396
试试这个:
更改Add
方法:
public long Add(object pItem)
{
bool firstTime;
long id = ObjectIDGenerator.GetId(pItem, out firstTime);
if (firstTime)
{
var mementoObject = DeepCopy(pItem);
MementoList.Add(id, mementoObject);
ReferenceList.Add(pItem);
}
return id; // i need my memento! LOL
}
您还应该添加此访问器方法:
public object GetRestoredState(long id)
{
return MementoList[id]; // you should put some range check here
}
现在您有了自己的 ID,可以通过这种方式获取恢复后的状态:
memento.RestoreState();
prestationInfo2 = memento.GetRestoredState(savedId); // <-- you got this when you called the Add()...
Console.WriteLine(prestationInfo2.Advance); //Expect 2, but still 1
跟进:您也可以将 IMemento
变成 IMemento<T>
,并相应地调整您的代码