醉熏红酒

文章
5
资源
0
加入时间
2年11月11天

初始化带参数类对象

<br />class CStudent <br />{ <br />public:<br />     int m_age; <br />    CStudent(int age=16) <br />    { <br />       m_age = age; <br />    }<br />    ~CStudent()<br />    {<br />  

Python3批量转换文本文件编码

#-*- coding: utf-8 -*-try:    fromchardet.universaldetector importUniversalDetector    IsAuto=Trueexcept ImportError:    IsAuto=Falseimportosi