我正在学习 Python 中的类和 OO,当我尝试从包中导入类时发现了一个问题。项目结构和类描述如下:

ex1/
    __init__.py
    app/
        __init__.py
        App1.py
    pojo/
        __init__.py
        Fone.py

类(class):

文件
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)

应用程序1.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()

当我尝试使用 from ex1.pojo import Fone 时,会引发以下错误:
fone = Fone(70)
TypeError: 'module' object is not callable

但是当我使用 from ex1.pojo.Fone import * 时,程序运行良好。

为什么我不能用我编码的方式导入 Fone 类?

最佳答案

在python中,您可以导入模块或该模块的成员

当你这样做时:
from ex1.pojo import Fone
您正在导入模块 Fone 以便您可以使用
fone = Fone.Fone(6)
或该模块的任何其他成员。

但是您也只能导入该模块的某些成员,例如
from ex1.pojo.Fone import Fone
我认为值得回顾一些关于 python 模块、包和导入的 documentation

关于Python 类导入错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16716814/

10-13 09:00