lua 数组转换为 c++ 数组
2016-3-19 3:1:59
收藏:0
阅读:110
评论:2
local pricetagColors = {
[3242] = {255, 0, 255},
[6712] = {255, 255, 0}
}
function getPricetagColor(itemnumber)
local r, g, b = 0, 0, 0
if pricetagColors[itemnumber] then
r, g, b = pricetagColors[itemnumber][1], pricetagColors[itemnumber][2], pricetagColors[itemnumber[3]
end
return {r, g, b}
end
好的,我现在正在逐步学习 C++。 现在我正在试图弄清楚 C++ 中的(复杂的?)数组是如何创建的。 由于我不知道如何用其他方式解释它,所以我使用了我最熟悉的 LUA。 函数并不是重要的事情,重要的是数组,因为我已经搜索了几个小时了,但是我无法弄清楚如何在 C++ 中完成你在 LUA 中看到的数组。
点赞
用户2554810
看起来你在问题中所使用的等价于 std::map<int, std::array<int, 3>>。
std::map<int, std::array<int, 3>> pricetagColors;
pricetagColors[3242] = {255, 0, 255};
pricetagColors[6712] = {255, 255, 0};
int itemnumber = 3242, r, g, b;
if (pricetagColors.find(itemnumber) != pricetagColors.end())
{
r = pricetagColors[itemnumber][0];
g = pricetagColors[itemnumber][1];
b = pricetagColors[itemnumber][2]; //请注意这里可以使用逗号运算符,
//但它并不是标准的 C++ 用法。
}
2016-03-19 03:39:37
评论区的留言会收到邮件通知哦~
推荐文章
- 如何将两个不同的lua文件合成一个 东西有点长 大佬请耐心看完 我是小白研究几天了都没搞定
- 如何在roblox studio中1:1导入真实世界的地形?
- 求解,lua_resume的第二次调用继续执行协程问题。
- 【上海普陀区】内向猫网络招募【Skynet游戏框架Lua后端程序员】
- SF爱好求教:如何用lua实现游戏内调用数据库函数实现账号密码注册?
- Lua实现网站后台开发
- LUA错误显式返回,社区常见的规约是怎么样的
- lua5.3下载库失败
- 请问如何实现文本框内容和某个网页搜索框内容连接,并把网页输出来的结果反馈到另外一个文本框上
- lua lanes多线程使用
- 一个kv数据库
- openresty 有没有比较轻量的 docker 镜像
- 想问一下,有大佬用过luacurl吗
- 在Lua执行过程中使用Load函数出现问题
- 为什么 neovim 里没有显示一些特殊字符?
- Lua比较两个表的值(不考虑键的顺序)
- 有个lua简单的项目,外包,有意者加微信 liuheng600456详谈,最好在成都
- 如何在 Visual Studio 2022 中运行 Lua 代码?
- addEventListener 返回 nil Lua
- Lua中获取用户配置主目录的跨平台方法
欢迎来到 C++,基本上我认为可以通过使用 C++ 的 MAP 功能来实现。也可以使用 Multi-Map。
示例代码可能像这样:(只是为了理解 @D 的思维方式并在你的例子中进行关联)
eg:
输入:
//声明 Map std::map <int, std::string> stdBindList; std::map <int, std::string>::iterator pos; //添加元素 stdBindList.insert (std::pair<int,std::string>(15,"a")); // 1 stdBindList.insert (std::pair<int,std::string>(22,"b")); // 2 stdBindList.insert (std::pair<int,std::string>(12,"c")); // 3 stdBindList.insert (std::pair<int,std::string>(15,"d")); // 4 stdBindList.insert (std::pair<int,std::string>(5,"e")); // 5 stdBindList.insert (std::pair<int,std::string>(5,"f")); // 6 stdBindList.insert (std::pair<int,std::string>(2,"g")); // 7 stdBindList.insert (std::pair<int,std::string>(5,"h")); // 8 stdBindList.insert (std::pair<int,std::string>(5,"i")); // 9 //遍历并打印 for (pos = stdBindList.begin();pos!=stdBindList.end();pos++) { }输出: