nac3_sca/nac3standalone/demo/classes.py

41 lines
599 B
Python
Raw Normal View History

@extern
2021-12-13 11:18:44 +08:00
def output_int32(x: int32):
...
2021-12-13 04:06:38 +08:00
@extern
2021-12-13 11:18:44 +08:00
def output_int64(x: int64):
2021-12-13 04:06:38 +08:00
...
2021-09-19 22:54:06 +08:00
class A:
a: int32
b: B
2021-09-19 22:54:06 +08:00
def __init__(self, a: int32):
self.a = a
self.b = B(a + 1)
2021-09-19 17:50:01 +08:00
2021-09-19 22:54:06 +08:00
def get_a(self) -> int32:
return self.a
2021-09-19 17:50:01 +08:00
2021-09-19 22:54:06 +08:00
def get_self(self) -> A:
return self
def get_b(self) -> B:
return self.b
class B:
b: int32
def __init__(self, a: int32):
self.b = a
2021-09-19 17:50:01 +08:00
def run() -> int32:
2021-09-19 22:54:06 +08:00
a = A(10)
2021-12-13 11:18:44 +08:00
output_int32(a.a)
2021-09-19 17:50:01 +08:00
2021-09-19 22:54:06 +08:00
a = A(20)
2021-12-13 11:18:44 +08:00
output_int32(a.a)
output_int32(a.get_a())
output_int32(a.get_b().b)
2020-03-30 22:47:45 +08:00
return 0