题库 软件开发 题目列表 以下代码class Parent(object):  x = 1 class Child1(...
多选题
以下代码
class Parent(object):
  x = 1
 class Child1(Parent):
  pass
 class Child2(Parent):
  pass
 Child1.x = 2
 Parent.x = 3
 print Parent.x, Child1.x, Child2.x
运行结果不正确的是?
A.

111

B.

121

C.

322

D.

123

题目信息
校招真题
-
正确率
0
评论
14
点击