好的,所以我一直在搜索,但没有得到答案。我想有人有同样的问题,但我无法解决这个问题。我是Lua的新手,有一些Python的经验但不是程序员:S。
所以我按照这里的教程做了一个metatable来处理复杂的数字:http://www.dcc.ufrj.br/~fabiom/lua/
所以我实现了创建,添加,打印和平等比较:
local mt={}
local function new(r,i)
return setmetatable({real = r or 0, im = i or 0},mt)
end
local function is_complex (v)
return getmetatable(v)==mt
end
local function add (c1,c2)
if not is_complex(c1) then
return new(c1+c2.real,c2.im)
end
if not is_complex(c2) then
return new(c1.real+c2,c1.im)
end
return new(c1.real + c2.real,c1.im + c2.im)
end
local function eq(c1,c2)
return (c1.real==c2.real) and (c1.im==c2.im)
end
local function modulus(c)
return (math.sqrt(c.real^2 + c.im^2))
end
local function tos(c)
return tostring(c.real).."+"..tostring(c.im).."i"
end
mt.new=new
mt.__add=add
mt.__tostring=tos
mt.__eq=eq
mt.__len=modulus
return mt
然后我做了一个小测试:
complex2=require "complex2"
print (complex2)
c1=complex2.new(3,2)
c2=complex2.new(3,4)
print (c1)
print (c2)
print(#{1,2})
print(#c2)
print(complex2.__len(c2))
print(#complex2.new(4,3))
我得到了:
table: 0000000003EADBC0
3+2i
3+4i
2
0
5
0
那么,我错了什么?是调用#的东西,当我尝试在其他情况下调试时程序进入函数但#operand变得像被忽略了。模数函数正在工作,可以在模块中调用...我很抱歉这么久,我确定很明显的问题,但我尝试了所有我已经可以做到的事情。谢谢
答案 0 :(得分:3)
可能是关于Lua版本的问题。 http://www.lua.org/manual/5.2/manual.html#2.4
" len":#operation
自Lua 5.2起作用
并且它仅适用于表格
答案 1 :(得分:0)
所以,谢谢你,你是对的。我以为我选择了5.2但是在解释器中它运行的是5.1:S。现在我做了:
complex2=require "complex2"
print (complex2)
c1=complex2.new(3,2)
c2=complex2.new(3,4)
print (c1)
print (c2)
print (c1+c2)
print(#{1,2})
print(#c2)
print(complex2.__len(c2))
print(complex2.__len(complex2.new(3,3)))
print(#complex2.new(4,3))
print(getmetatable(c2))
我得到了:
table: 000000000047E1C0
3+2i
3+4i
6+6i
2
5
5
4.2426406871193
5
table: 000000000047E1C0
一切尽在掌握^^,至少代码是按照假设的xD
运行的