.NET Hashtable клон - PullRequest
       16

.NET Hashtable клон

1 голос
/ 14 апреля 2010

С учетом следующего кода:

Hashtable main = new Hashtable();

Hashtable inner = new Hashtable();
ArrayList innerList = new ArrayList();
innerList.Add(1);
inner.Add("list", innerList);

main.Add("inner", inner);

Hashtable second = (Hashtable)main.Clone();
((ArrayList)((Hashtable)second["inner"])["list"])[0] = 2;

Почему значение в массиве изменяется с 1 на 2 в «основной» Hashtable, поскольку изменение было сделано для клона?

Ответы [ 2 ]

6 голосов
/ 14 апреля 2010

Вы клонировали Hashtable, а не его содержимое.

0 голосов
/ 14 апреля 2010

Спасибо за вашу помощь, ребята. Я закончил с этим решением:

Hashtable clone(Hashtable input)
{
    Hashtable ret = new Hashtable();

    foreach (DictionaryEntry dictionaryEntry in input)
    {
        if (dictionaryEntry.Value is string)
        {
            ret.Add(dictionaryEntry.Key, new string(dictionaryEntry.Value.ToString().ToCharArray()));
        }
        else if (dictionaryEntry.Value is Hashtable)
        {
            ret.Add(dictionaryEntry.Key, clone((Hashtable)dictionaryEntry.Value));
        }
        else if (dictionaryEntry.Value is ArrayList)
        {
            ret.Add(dictionaryEntry.Key, new ArrayList((ArrayList)dictionaryEntry.Value));
        }
    }

    return ret;
}
...