最亲密的程序员,
我似乎对参考在C#中的工作原理缺乏了解。
案例:
我试图实现某种Memento代理,它将包装一个接口并存储我们提供给方法调用的每个参数并将它们存储到列表中。
必要时我们可以调用RestoreState,对象将“重置”为原始状态。
代码:
消费者和模型对象
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);
}
}
}
额外信息
我的猜测是,我正在做/了解List的错误。
我还尝试了Interlocked.Exchange,使用WeakReference并使用WeakReference并将对象存储到CareTaker对象中(并将CareTaker存储到List中),实现了一些复制属性...
而且......我只是看不到它。
我的预期结果是包含值2的PrestationInfo.Advance属性。但它保持
答案 0 :(得分:0)
看起来问题在于你对.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方法不会返回任何内容,而是严格操作引用,而不是内部状态。您的方法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存储引用时要小心,否则你会发现自己有一个很好的内存泄漏案例。
答案 1 :(得分:0)
Memento.Add需要一个ref参数修饰符来访问原始引用类型指针。
https://msdn.microsoft.com/en-us/library/14akc2c7.aspx?f=255&MSPPError=-2147217396
答案 2 :(得分:0)
试试这个:
更改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>
,并相应调整您的代码