有没有办法遍历表元类对象的字段?(不是表本身,我需要在实例化表之前做一些初步分析)
我对 Python 中的元类不是很熟悉,所以这对我来说是个谜。
class Particle(IsDescription):
name = StringCol(16, pos=1) # 16-character String
lati = IntCol(pos=2) # integer
longi = IntCol(pos=3) # integer
pressure = Float32Col(pos=4) # float (single-precision)
temperature = FloatCol(pos=5) # double (double-precision)