面向对象 面向对象也有封装的作用:将同一个函数封装到一个类中。 如果函数放在类中就不叫做函数了,而叫做方法 面相对象中方法的调用 class Good: def func(self): print("杨子莲") def func1(self): print("杨子列") x = Good() #创建 ...
分类:
其他好文 时间:
2020-09-17 20:10:15
阅读次数:
25
如果你没有房子和炉火来作为对妻子的保障,那么就千万不要结婚。 2.The proof of gold is fire,the proof of woman,gold;the proof ofman,a woman. 检验金子的是火,检验女人的是金子,检验男人的是女人。 3.A good Wife l ...
分类:
其他好文 时间:
2020-09-17 17:31:55
阅读次数:
45
题目描述 将一个英文语句以单词为单位逆序排放。例如“I am a boy”,逆序排放后为“boy a am I”所有单词之间用一个空格隔开,语句中除了英文字母外,不再包含其他字符 接口说明 /** * 反转句子 * * @param sentence 原句子 * @return 反转后的句子 */p ...
分类:
其他好文 时间:
2020-08-26 17:18:30
阅读次数:
45
题目:填空练习(指向指针的指针)。 程序分析:无。 程序源代码: 1 #include<stdio.h> 2 #include<stdlib.h> 3 int main() 4 { 5 const char *s[]={"man","woman","girl","boy","sister"}; 6 ...
分类:
其他好文 时间:
2020-08-01 21:17:33
阅读次数:
72
Given the root of a binary tree and an integer distance. A pair of two different leaf nodes of a binary tree is said to be good if the length of the s ...
分类:
其他好文 时间:
2020-07-27 15:58:17
阅读次数:
93
可以先做一下弱化版:CF526F Pudding Monsters,那道题是本题的基础。 由于这是个排列,因此好区间可以转化为满足 \(max - min = r - l\) 的区间。其中 \(max,min\) 分别表示区间最大值和最小值,\(l,r\) 分别表示区间左右端点。我们可以枚举 \(r ...
分类:
其他好文 时间:
2020-07-26 22:48:58
阅读次数:
64
@ 状语从句的连接词 独立结构(独立主格) 如果有be动词,谓语变身过程中丢掉be动词,本质就是变成了分词结构 例子 主语一直主动 When I was a little girl, I fell in love with science. Being a little girl, I fell i ...
分类:
其他好文 时间:
2020-07-26 19:38:19
阅读次数:
115
1.value的后面不应该再加小括号(),在foreach里面加小括号,不然会发生语法错误; <insert id="addGoodsList" parameterType="list"> insert into wms_goods(GOOD_NAME,GOOD_TYPE,GOOD_SIZE,GOO ...
分类:
其他好文 时间:
2020-07-26 19:03:59
阅读次数:
87
web字体:解决用户电脑上没有安装字体类型的方法 当用户电脑上没有该字体的时候,强制让用户下载该字体。 使用@font-face <!-- 制作一个新字体, --> @font-face{ font-family:"good naight"; src:url("../font/wananti.ttf ...
分类:
Web程序 时间:
2020-07-25 23:32:26
阅读次数:
82
【原题】 Description Rain has pummeled the cows' field, a rectangular grid of R rows and C columns (1 <= R <= 50, 1 <= C <= 50). While good for the grass, ...
分类:
其他好文 时间:
2020-07-24 22:06:12
阅读次数:
92