cocos2d-x lua table与json的转换

cocos2d-x lua table与json的转换,第1张

概述cocos2d-x lua table与json的转换 version: cocos2d-x 3.6 1.引入json库 require("src/cocos/cocos2d/json") 2.使用json function testJson() local beginTime = os.time() local testTable = {}-- [ -- { -- "U cocos2d-x lua table与Json的转换

version: cocos2d-x 3.6

@H_301_5@1.引入Json库

require("src/cocos/cocos2d/Json")

2.使用Json
function testJson()    local beginTime = os.time()       local testtable = {}-- [ -- { -- "UserID": "1234567890",-- "name": "test1",-- "Icon": "www.Google.com" -- },-- { -- "UserID": "1234567890",-- "name": "test2",-- "Icon": "www.Google.com" -- } -- ]     for i = 1,100 do        table.insert(testtable,{["UserID"]="123",["name"]="test1",["Icon"]="www.Google.com"})    end     -- encode     local JsonData = Json.encode(allUserData)    print("user data Json:\n" .. JsonData)    -- decode     testtable = Json.decode(JsonData)    local endTime = os.time()    print("test time: " .. tostring(endTime - beginTime))end
总结

以上是内存溢出为你收集整理的cocos2d-x lua table与json的转换全部内容,希望文章能够帮你解决cocos2d-x lua table与json的转换所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1060279.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存