如何解决 Lua 中 string.format 参数不正确抛出异常问题
1个回答
2017-11-07
展开全部
进入lua调试命令行:
>debug.debug()
lua_debug> print(string.format('%p','xx'))
<debug command>:1: invalid option '%p' to 'format'
格式化字符串遵循 ISO C 函数 sprintf 的规则。 不同点在于选项 *, h, L, l, n, p 不支持
>debug.debug()
lua_debug> print(string.format('%p','xx'))
<debug command>:1: invalid option '%p' to 'format'
格式化字符串遵循 ISO C 函数 sprintf 的规则。 不同点在于选项 *, h, L, l, n, p 不支持
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询