通过存储在哈希表中的字符串访问函数

编程入门 行业动态 更新时间:2024-10-25 06:20:21
本文介绍了通过存储在哈希表中的字符串访问函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

如果我在哈希表中将函数名称存储为字符串. 是否可以通过存储的字符串访问函数?

If I have function names stored as strings in a Hashtable. Is there a way to access the functions via the stored strings?

编辑 恐怕我在CLDC1.1/MIDP2.0上使用的平台不支持Reflection. 有什么解决方法?

EDIT I'm afraid the platform that i'm working on CLDC1.1/MIDP2.0 does not support Reflection. Any workaround possible?

推荐答案

只需使用一长串else-if:

Just use a big long list of else-ifs:

[...] } else if ("foo".equals(function)) { target. foo(); } else if ("bar".equals(function)) { target. bar(); [...]

(尽管我通常不喜欢在源代码中尝试垂直对齐,但我认为在这种情况下,这是非常值得的.)

(Although I generally don't like attempting vertical alignments in source, I think in cases like this it is well worth it.)

在映射中存储函子是一种替代方法,对于许多MIDP应用程序,bu可能会增加对象大小.

Storing a functor in the map is an alternative, bu might increase object size too much for many MIDP applications.

更多推荐

通过存储在哈希表中的字符串访问函数

本文发布于:2023-11-16 06:20:30,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1601763.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:字符串   函数   哈希表中

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!