diango python manage.py报错
TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
加个代理即可
类其实就是一种数据类型,和结构相似。类的成员包括两类,属性(成员变量)和行为(成员函数)。
成员函数定义的两种方法(可能有多种,觉得这两种比较常用)
1、将类的成员函数定义在类体内,如
class CPerson
{public: short age;short getage(){return age;}};2、将类的成…