我正在python中学习类和OO,当我尝试从包中导入一个类时,我发现了一个问题。项目结构和类如下所述:
ex1/
__init__.py
app/
__init__.py
App1.py
pojo/
__init__.py
Fone.py
课程:
Fone.py
class Fone(object):
def __init__(self,volume):
self.change_volume(volume)
def get_volume(self):
return self.__volume
def change_volume(self,volume):
if volume >100:
self.__volume = 100
elif volume <0:
self.__volume = 0
else:
self.__volume = volume
volume = property(get_volume,change_volume)
App1.py
from ex1.pojo import Fone
if __name__ == '__main__':
fone = Fone(70)
print fone.volume
fone.change_volume(110)
print fone.get_volume()
fone.change_volume(-12)
print fone.get_volume()
fone.volume = -90
print fone.volume
fone.change_volume(fone.get_volume() **2)
print fone.get_volume()
当我尝试使用ex1.pojo import Fone 中的时,会引发以下错误:
fone = Fone(70)
TypeError: 'module' object is not callable
但是当我使用ex1.pojo.Fone import * 中的时,程序运行正常。
为什么我不能按照我编码的方式导入Fone类?
答案 0 :(得分:4)
在python中,您可以导入该模块的模块或成员
当你这样做时:
from ex1.pojo import Fone
您正在导入模块Fone
,因此您可以使用
fone = Fone.Fone(6)
或该模块的任何其他成员。
但您也可以只导入该模块的某些成员,如
from ex1.pojo.Fone import Fone
我认为值得回顾python模块,包和导入上的一些documentation
答案 1 :(得分:3)
您应该导入类,而不是模块。例如:
from ex1.pojo.Fone import Fone
此外,您应该小写模块名称的命名约定。
答案 2 :(得分:0)
from ex1.pojo.Fone import Fone