码迷,mamicode.com
首页 > 其他好文 > 详细

Config类中的属性在调用时候显示不存在

时间:2020-08-26 17:12:40      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:调用   存在   ase   显示   conf   init   class   self   strong   

# -*- coding:utf-8
print(‘2‘)
class Config(object):
def __init__(self,GPU_number=38):
print(‘1‘)
if GPU_number == 147:
self.code_exp_dataset = r‘/code/CGVSNI/code_exp_dataset‘


if GPU_number == 38:
self.code_exp_dataset = r‘/code/CGVSNI/code_exp_dataset‘


如果属性放在构造方法中,需要用self.属性名,如果没有self直接是属性名,那么在实例化后,调用的时候会显示没有这个属性


或者也可以
class Config(object):
  code_exp_dataset = r‘/code/CGVSNI/code_exp_dataset‘
  code_exp_dataset = r‘/code/CGVSNI/code_exp_dataset‘

使得属性直接不放在方法中,

Config类中的属性在调用时候显示不存在

标签:调用   存在   ase   显示   conf   init   class   self   strong   

原文地址:https://www.cnblogs.com/baitian963/p/13532745.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!