嵌套类:如何在Python中将一个类放入另一个类中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了嵌套类:如何在Python中将一个类放入另一个类中相关的知识,希望对你有一定的参考价值。

  1. class DisneyCharacter():
  2.  
  3. # This variable holds the name for the class DisneyCharacter
  4. name = ""
  5.  
  6. class Duck():
  7.  
  8. # This variable holds the name for the class Duck
  9. name = ""
  10.  
  11. def __init__(self, name = None):
  12. """ Constructor for the class Duck """
  13. # If the user doesn't specify a second name, "Duck" will be chosen
  14. if (name is None): name = "Duck"
  15. self.name = name
  16.  
  17. def getName(self):
  18. """ Returns the name stored in the class Duck """
  19. return self.name
  20.  
  21. def __init__(self, name = None, secondName = None):
  22. """ Constructor for the class DisneyCharacter """
  23. # If the user doesn't specify a name, "Donald" will be chosen
  24. if (name is None): name = "Donald"
  25. # Creates a new instance of Duck
  26. newDuck = DisneyCharacter.Duck(secondName)
  27. # This will join together the names from the classes DisneyCharacter and Duck
  28. self.name = name + " " + newDuck.getName()
  29.  
  30. def getName(self):
  31. """ Returns the name stored in the class DisneyCharacter """
  32. return self.name
  33.  
  34. # Creates an instance of the class DisneyCharacter
  35. donald = DisneyCharacter()
  36.  
  37. # Writes "Donald Duck"
  38. print(donald.getName())
  39.  
  40. # Writes "Daisy Duck"
  41. daisy = DisneyCharacter("Daisy")
  42. print(daisy.getName())
  43.  
  44. # Writes "Scrooge McDuck"
  45. unclescrooge = DisneyCharacter("Scrooge", "McDuck")
  46. print(unclescrooge.getName())

以上是关于嵌套类:如何在Python中将一个类放入另一个类中的主要内容,如果未能解决你的问题,请参考以下文章

在Python中定义另一个类中的类有什么好处?

使用 makeStyles 在另一个选定的类中嵌套类

使用 Dart 语言解析嵌套 JSON 数组并将其放入模型类中

无法在android中将值从一个类传递给另一个类

在哪里以及如何使用嵌套类? [复制]

div元素的CSS样式规则,该元素属于嵌套在另一个元素类中的多个类