我有两个课程以防万一:
测试.py:
class Functions:
def mapping(func, x):
return func(x)
我尝试运行下面的代码:
import testing
def doubleMe(data):
return data * data
res = stream.Functions.map(testdouble, [1,2,3,4,5])
print res
在我尝试运行代码后,我得到了错误
TypeError:必须使用函数实例作为第一个参数调用未绑定的方法映射()(改为获取函数实例)
我不太清楚这里出了什么问题,我可以给点建议吗?谢谢!