- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
private Dictionary<Type, Bag<Event>> events = new Dictionary<Type, Bag<Event>>();
internal Bag<T> GetEventList<T>() where T:class
{
Type type = typeof(T);
Bag<Event> b;
if (events.TryGetValue(type, out b))
{
return b as Bag<T>;
}
else {
b = new Bag<T>() as Bag<Event>;
events[type] = b;
return b as Bag<T>;
}
}
internal void AddEvent<T>(T ev) where T:class,Event
{
Type type = typeof(T);
Bag<Event> b;
if (events.TryGetValue(type, out b))
{
b.Add(ev); // <= NullReferenceException, b is null
}
else {
b = new Bag<T>() as Bag<Event>;
events.Add(type, b);
b.Add(ev);
}
}
我总是在 AddEvent 中得到 NullReferenceException。事件字典仅在这两个函数中使用,我不知道为什么该值为空...我不会在任何地方插入空值!
我要疯了...
最佳答案
可能的罪魁祸首是这一行:
b = new Bag<T>() as Bag<Event>;
as
cast 可能失败,这将分配 null
至 b
.
我的猜测是您正在使用 Event
的子类作为 T
的类型, 自 Bag<T>
在类型参数上不是协变的(我假设它是一个类,所以它不可能是,)强制转换失败,你最终得到 b
正在null
.
更新:根据下面的评论,问题确实是as
throw 。要解决问题,只需创建一个 new Bag<Event>()
, 无需强制转换。
关于c# - 字典 trygetvalue null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11421980/
我在 F# 中的字典上使用 TryGetValue,它返回一个对象 bool * Dictionary 我已经用谷歌搜索了几个小时,但是我如何访问这个对象的 bool 组件,以便我可以检查它是否返回了
所以,我有一个 Dictionary Foo 在一个线程中我有: void Thread1() { ... if (!Foo.TryGetValue(key, out v)) { Fo
我正在尝试从字典中获取值(JSON 反序列化)并将其解析为 long。 当我快速查看变量时,我发现没有“M”作为下面给出的输出参数的一部分 但是当我点击这个值时,我发现“M”被添加到给定的值中 这里的
我有一个字典,它将字符串映射到这样的对象:Dictionary myDic; 我事先知道对象的类型是基于字符串的,但我的问题是我应该使用 TryGetValue,还是使用 try、catch 语句直接
将以下代码用于展览 A: string sql; if (!GetQueries.TryGetValue(type.TypeHandle, out sql)) Dictionary 的文档说如果找不到
TryGetValue 是否改变输入参数? 在使用 TryGetValue 时,我倾向于这样做: Dictionary myDic; long lValue = -1; long lTemp1; if
private Dictionary> events = new Dictionary>(); internal Bag GetEventList() where T:class { Ty
我完全是个 C# 菜鸟,无法弄清楚为什么相同的方法以不同的方式工作。我正在制作一个简单的电子表格应用程序,并使用单元格字典,其中键是字符串名称,值是 Cell 对象: public struct Ce
我环顾四周,看到很多关于修改 GetHashCode() 的引用资料和玩ContainsKey()的东西和 TryGetValue() - 但所有这些问题和示例都与一些晦涩的用户特定 key 有关。
我正在编写一个需要优化的计算量大的应用程序(NLP 机器学习任务)。 因为我的代码有很多 for 循环,所以我使用了 Parallel.For(和变体)来并行化最外层的循环。我还使用数组和 Dicti
我有这个简单的例子: using System; using System.Collections.Generic; namespace ConsoleApplication1 { class
private object lockObj = new object(); private Dictionary dict = new Dictionary(); public string Get
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我正在努力 myDic.TryGetValue("用户名", out user.用户名); 但它不起作用。 这不可能吗? 最佳答案 不,来自文档: “属性不是变量,因此不能作为输出参数传递。” htt
我分析了我的应用程序并运行了一些性能测试,这让我相信以下 if-lock-if 安排: private float GetValue(int id) { float value; if
此代码有效,但效率低下,因为它会重复查找 ignored字典。如何使用字典TryGetValue() LINQ 语句中的方法使其更高效? IDictionary records = ... IDict
所以,给定下面的代码 type MyClass () = let items = Dictionary() do items.Add ("one",1) items.Add (
我有一个类型的字典 Dictionary 尝试从中读取值时,我无法使用这种方式 if (myDict.TryGetValue(1, out (float tupleItem1, float tuple
我有以下ConcurrentDictionary: ConcurrentDictionary sessions; 我知道 sessions.TryGetValue(key, out session)
我不能在匿名类型的 linq 表达式中使用字典中的 TryGetValue()。 Dictionary dict = new Dictionary() { {"1", "one
我是一名优秀的程序员,十分优秀!