面向对象 class Foo: #静态字段,属于类 country='中国' def __init__(self,name): #普通字段 self.name=name #普通方法 def show(self): print(self.name) #静态方法 @staticmethod def st ...
分类:
编程语言 时间:
2019-09-26 21:19:45
阅读次数:
82
Pursuit For Artifacts "CodeForces 652E " Johnny is playing a well known computer game. The game are in some country, where the player can freely trave ...
分类:
其他好文 时间:
2019-09-23 11:56:16
阅读次数:
88
A country named Berland has n cities. They are numbered with integers from 1 to n. City with index 1 is the capital of the country. Some pairs of citi ...
分类:
其他好文 时间:
2019-09-20 20:55:15
阅读次数:
86
行业领先的.NET界面控件DevExpress 正式发布了v19.1版本,本文将以系列文章的方式为大家介绍DevExtreme Complete Subscription v19.1中全新发布的Dropdown Button部件、浮动按钮小部件,PivotGrid数据层现在可以请求单个页面所需的数据 ...
分类:
其他好文 时间:
2019-09-20 11:59:26
阅读次数:
144
链接: https://nanti.jisuanke.com/t/41403 题意: State Z is a underwater kingdom of the Atlantic Ocean. This country is amazing. There are nn cities in the ...
分类:
其他好文 时间:
2019-09-15 16:50:38
阅读次数:
137
# 修改类的方法: 1,Person.country = '日本' 通过类名来修改 2,p.__class__.country = '日本' 通过实例进行修改(也是要先获取类,本质还是通过类进行修改)# 实例可以访问类属性,但不能修改,(通过实例修改类属性,会给实例添加新的属性,不是修改,可用p._ ...
分类:
其他好文 时间:
2019-09-12 23:43:38
阅读次数:
125
# 在类里可以定义三种方法# 1,实例方法# 方法的第一个参数是self# 2,类方法# 方法的第一个参数是cls(表示当前类),需要帽子@classmethod# 3,静态方法# 方法没有参数,带有帽子@staticmethodclass Person(object): country = '中国 ...
分类:
其他好文 时间:
2019-09-12 23:19:16
阅读次数:
105
开始之前需要准备好malab,中国地图shp文件,m_map工具包。 中国地图shp文件可以在下面的链接中下载: https://gadm.org/download_country_v3.html 本文借鉴了下面链接中教程,该方法为matlab自带的画图工具包绘制方法,在我电脑上geoshow命令运 ...
分类:
其他好文 时间:
2019-09-08 10:03:27
阅读次数:
1173
蒟蒻yxj 是来自美丽富饶的SDGR 的一名高中生 每天最喜欢做的事就是 花式被机房dalao吊打 弱到想写个题解怎么粘题目链接都要去问机房dalao qwq 感觉好丢脸 哈哈哈哈 还好机房dalao脾气好 要不然还以为我是过去找事的qwq (尴尬又不失礼貌的微笑) 我的学校 gryz 是我们这个小 ...
分类:
其他好文 时间:
2019-09-02 12:01:58
阅读次数:
112
函数是什么? 函数一词来源于数学,但编程中的「函数」概念,与数学中的函数是有很大不同的,具体区别,我们后面会讲,编程中的函数在英文中也有很多不同的叫法。在BASIC中叫做subroutine(子过程或子程序),在Pascal中叫做procedure(过程)和function,在C中只有functio ...
分类:
编程语言 时间:
2019-08-31 15:01:16
阅读次数:
85