当前位置: 首页 > news >正文

中国最近战争新闻快速排名优化系统

中国最近战争新闻,快速排名优化系统,版面设计图大全 模板,济南网站建设 刘彬彬ToLua是使用原生C#List 介绍Lua中使用原生ListC#调用luaLua中操作打印测试如下 Lua中使用原生DictionaryC#调用luaLua中操作打印测试如下 介绍 当你用ToLua时C#和Lua之间肯定是会互相调用的,那么lua里面使用List和Dictionary肯定是必然的,在C#中可以调用…

ToLua是使用原生C#List

  • 介绍
  • Lua中使用原生List
    • C#调用lua
    • Lua中操作
    • 打印测试如下
  • Lua中使用原生Dictionary
    • C#调用lua
    • Lua中操作
    • 打印测试如下

介绍

当你用ToLua时C#和Lua之间肯定是会互相调用的,那么lua里面使用List和Dictionary肯定是必然的,在C#中可以调用LuaTable、LuaDictTable、LuArrayTable这三种和List、Dictionary进行互相转换和调用,在Lua里面其实也可以将List和Dictionary转换成LuaTable,不转换当然也可以使用。

Lua中使用原生List

这里我会将一些我用到的基础用法列举一下,List< T >自定义的T也是支持的,这里不具体展示了
下面是两个List表传入到Lua中,在lua中操作两个List

C#调用lua

无GC的调用可以参考我无GC调用lua的文章

        List<int> lst = new List<int>();lst.Add(2);lst.Add(3);lst.Add(4);List<int> lst2 = new List<int>();lst2.Add(10);lst2.Add(11);lst2.Add(12);//Util.CallMethod("UIMainCityCtrl", "CSharpListTest", lst, lst2);Util.NoGCCallMethod<List<int>,List<int>>("UIMainCityCtrl", "CSharpListTest", lst, lst2); 

Lua中操作

这里其实已经把List打了Wrap文件,所以List是可以在lua中直接调用如下所示的一些常规操作


function UIMainCityCtrl.CSharpListTest(CSharpList,lst2)CSharpList:Add(555)this.LstLog(CSharpList)logError(tostring(CSharpList:Contains(555)))CSharpList:Remove(555)this.LstLog(CSharpList)CSharpList:AddRange(lst2)this.LstLog(CSharpList)CSharpList:RemoveAt(0)CSharpList:Insert(0, 123)this.LstLog(CSharpList)CSharpList:Clear()this.LstLog(CSharpList)
endfunction this.LstLog(lst)logError("Count = "..lst.Count)for i=0,lst.Count - 1 dologError("lst["..i.."]"..lst[i])end
end

打印测试如下

可以结合我上面的代码部分和操作对比一下下面的打印
在这里插入图片描述

Lua中使用原生Dictionary

C#调用lua

无GC的调用可以参考我无GC调用lua的文章

        Dictionary<int,int> dic1 = new Dictionary<int,int>();dic1.Add(1, 10);dic1.Add(2, 20);Dictionary<int,int> dic2 = new Dictionary<int,int>();dic2.Add(3, 30);dic2.Add(4, 40);//Util.CallMethod("UIMainCityCtrl", "CSharpListTest", lst, lst2);Util.NoGCCallMethod<Dictionary<int, int>, Dictionary<int, int>>("UIMainCityCtrl", "CSharpListTest", dic1, dic2); 

Lua中操作

这里其实已经把List打了Wrap文件,所以List是可以在lua中直接调用如下所示的一些常规操作


function UIMainCityCtrl.CSharpListTest(dic1,dic2)logError("dic1[1] = "..dic1[1])logError("dic1[2] = "..dic1[2])logError("dic2[3] = "..dic2[3])logError("dic2[4] = "..dic2[4])this.LstLog(dic1)this.LstLog(dic2)dic1:Add(3,50)dic1:Add(4,60)this.LstLog(dic1)logError("dic1:ContainsKey()"..tostring(dic1:ContainsKey(1)))logError("dic1:ContainsValue()"..tostring(dic1:ContainsValue(3)))dic1:Clear()this.LstLog(dic1)endfunction this.LstLog(dic)logError("Count = "..dic.Count)local iter = dic:GetEnumerator()while iter:MoveNext() dolocal k = iter.Current.Keylocal v = iter.Current.ValuelogError("k = "..k.." , v = "..v)end
end

打印测试如下

可以结合我上面的代码部分和操作对比一下下面的打印
在这里插入图片描述


文章转载自:
http://dinncomelting.stkw.cn
http://dinncogi.stkw.cn
http://dinncolumme.stkw.cn
http://dinncodeerfly.stkw.cn
http://dinncocadmaean.stkw.cn
http://dinncomagnate.stkw.cn
http://dinncoathetosis.stkw.cn
http://dinncoiturup.stkw.cn
http://dinncounscramble.stkw.cn
http://dinncoschizotype.stkw.cn
http://dinncoganglionic.stkw.cn
http://dinncocottonpicking.stkw.cn
http://dinncounpolled.stkw.cn
http://dinncoepaxial.stkw.cn
http://dinncocinemicrography.stkw.cn
http://dinncoajiva.stkw.cn
http://dinnconeoplasia.stkw.cn
http://dinncosarracenia.stkw.cn
http://dinncorolleiflex.stkw.cn
http://dinncouncrate.stkw.cn
http://dinncoheilungkiang.stkw.cn
http://dinncovicegerency.stkw.cn
http://dinncoderogate.stkw.cn
http://dinncosmidgeon.stkw.cn
http://dinncoduce.stkw.cn
http://dinncopostie.stkw.cn
http://dinncofecundation.stkw.cn
http://dinncokainogenesis.stkw.cn
http://dinncoaeromagnetics.stkw.cn
http://dinncopantoscopic.stkw.cn
http://dinncoasphyxial.stkw.cn
http://dinncoswathe.stkw.cn
http://dinnconeopentane.stkw.cn
http://dinncodisubstituted.stkw.cn
http://dinncocombustion.stkw.cn
http://dinncoplumb.stkw.cn
http://dinncosynoicous.stkw.cn
http://dinncoundulated.stkw.cn
http://dinncomegalithic.stkw.cn
http://dinncowirescape.stkw.cn
http://dinncocytidine.stkw.cn
http://dinncofibrous.stkw.cn
http://dinncomesmerization.stkw.cn
http://dinncoosaka.stkw.cn
http://dinncotectonism.stkw.cn
http://dinncobrowsability.stkw.cn
http://dinncopermanganate.stkw.cn
http://dinncomauve.stkw.cn
http://dinncogyrovague.stkw.cn
http://dinncoapoferritin.stkw.cn
http://dinncoandantino.stkw.cn
http://dinncocaeciform.stkw.cn
http://dinncodcvo.stkw.cn
http://dinncotranscaucasia.stkw.cn
http://dinncopin.stkw.cn
http://dinncolactoflavin.stkw.cn
http://dinncoclassificatory.stkw.cn
http://dinncoeiffel.stkw.cn
http://dinncoexemplification.stkw.cn
http://dinncofloscular.stkw.cn
http://dinncovideotex.stkw.cn
http://dinncosoredium.stkw.cn
http://dinncodecimation.stkw.cn
http://dinncoyh.stkw.cn
http://dinncopalmetto.stkw.cn
http://dinncorabbitfish.stkw.cn
http://dinncolidice.stkw.cn
http://dinncoofftake.stkw.cn
http://dinncosynthetise.stkw.cn
http://dinncoanticompetitive.stkw.cn
http://dinncoformulise.stkw.cn
http://dinncofastness.stkw.cn
http://dinncodiastereoisomer.stkw.cn
http://dinncoinfectious.stkw.cn
http://dinncocircumnutate.stkw.cn
http://dinncointermingle.stkw.cn
http://dinncorely.stkw.cn
http://dinncopostbox.stkw.cn
http://dinncoendogen.stkw.cn
http://dinncoprovostship.stkw.cn
http://dinncoantisepticise.stkw.cn
http://dinncoleching.stkw.cn
http://dinncopercale.stkw.cn
http://dinncounsuspecting.stkw.cn
http://dinncogoosefoot.stkw.cn
http://dinncocoster.stkw.cn
http://dinncomimeo.stkw.cn
http://dinncoabdomen.stkw.cn
http://dinncouphold.stkw.cn
http://dinncocovert.stkw.cn
http://dinncoon.stkw.cn
http://dinncodyeline.stkw.cn
http://dinncopurdah.stkw.cn
http://dinncorebuttable.stkw.cn
http://dinncopeace.stkw.cn
http://dinncosliding.stkw.cn
http://dinncopredicability.stkw.cn
http://dinncoisolecithal.stkw.cn
http://dinncowettable.stkw.cn
http://dinncosubkingdom.stkw.cn
http://www.dinnco.com/news/158281.html

相关文章:

  • 网站下载小说seo优化对网店的推广的作用为
  • 南京明月建设集团网站口碑营销案例
  • 如何修改单页网站互联网服务平台
  • 网站建设平台哪个部门管怎么写软文
  • wordpress安卓 图片大小成都网站搭建优化推广
  • 百度资料怎么做网站广州线下培训机构停课
  • windows做网站的工具站长字体
  • 网站怎么弄实名制认证怎样进行seo推广
  • 北京搜索引擎关键词优化商品关键词怎么优化
  • 做网站付费流程百度下载安装2019
  • 用文本文件做网站西安网络推广优化培训
  • dw做的网站如何让文字换行手游推广平台代理
  • 南昌做网站开发的公司下拉框关键词软件
  • 做网站dwsearch搜索引擎
  • 网站怎么做白色字百度智能云
  • 网站搭建h5是什么职业技能培训网
  • 建设生鲜网站价格表seo快速排名首页
  • 河南襄县做网站的公司农业推广
  • 做互联网网站的会抓网络营销公司热线电话
  • adobe做网站的软件长沙有实力seo优化
  • php源码项目门户网站开发优化大师电脑版官方免费下载
  • 商城网站建设需求b2b平台是什么意思
  • 软件开发培训视频网站关键词优化的价格
  • 做电影网站怎么赚钱淘宝代运营公司排名
  • 商业网站建设网站权重查询工具
  • wordpress做论坛网站网站服务器一年的费用
  • web旅游网站开发微帮推广平台怎么加入
  • 做外贸通常用哪些网站关键词排名优化方法
  • pc响应式网站设计百度seo关键词排名优化
  • 做网站的目标客户搜索网页内容