gpt4 book ai didi

c# - 如何将 c++ 中的 make_pair 翻译成 c#?

转载 作者:太空狗 更新时间:2023-10-29 21:02:06 25 4
gpt4 key购买 nike

map <pair<unsigned int, unsigned int>, unsigned int> kmapValues;

private Dictionary<KeyValuePair<uint, uint>, uint> kmapValues;

替换

kmapValues[make_pair(j, i)] = 1 

kmapValues[Tuple(j, i)] = 1 // got error

System.Tuple is type but used like a variable error

最佳答案

您正在声明要使用的字典 KeyValuePair<K,V> key ,但您正在尝试使用 Tuple<T1,T2> 访问它反而。您需要决定一种类型,并坚持使用它。

KeyValuePair<K,V>是不对称的,我会用 Tuple<T1,T2> :

private Dictionary<Tuple<uint, uint>, uint> kmapValues;

那么你的作业就可以正常工作了:

kmapValues[Tuple.Create(j, i)] = 1;

关于c# - 如何将 c++ 中的 make_pair 翻译成 c#?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16276135/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com