1,accomplishment,something that is successful. 2,acronym,abbreviation,first letters,some words./?æk.r?.n?m/. 3,adhere,to stick firmly. 4,aggression,/? ...
分类:
其他好文 时间:
2020-02-15 09:20:18
阅读次数:
87
''' 生成器generator创建 1.由列表生成式改写 2.函数定义中有yield 生成器的调用方式 1.通过for调用 2.通过try except调用,并且获得返回值 ''' # l = [x*x for x in range(10)] ##[0, 1, 4, 9, 16, 25, 36, ...
分类:
其他好文 时间:
2020-02-13 21:22:28
阅读次数:
93
第九讲 并列句 The girl saw Kingkong. The girl fell in love with Kingkong. The girl saw Kingkong and fell in love with him. \1. 并列句:包括两个或两个以上的简单句用并列连词或分好连接的句 ...
分类:
其他好文 时间:
2020-02-12 22:08:02
阅读次数:
89
对于Kafka与RabbitMQ、ActiveMQ协议,它们具体的区别如下:activemq: activemq支持主从复制、集群。但是集群功能看起来很弱,只有failover功能,即我连一个失败了,可以切换到其他的broker上。这一点貌似不太科学。假设有三个broker,其中一个上面没有cons ...
分类:
其他好文 时间:
2020-02-12 11:22:54
阅读次数:
68
遇到个不会的 Effective triangulation Tiling and rasterization both work on fragment patches larger than a single pixel; e.g. for Mali GPUs the tiling will u ...
分类:
其他好文 时间:
2020-02-11 20:52:47
阅读次数:
92
Problem : Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, gi ...
分类:
其他好文 时间:
2020-02-10 00:20:24
阅读次数:
81
People are unreasonable,illogical and self centered. Love them anyway. If you do good,people will accuse you of selfish,ulterior motives. Do good anyw ...
分类:
其他好文 时间:
2020-02-09 11:20:14
阅读次数:
89
变量替换例1:从头匹配最短删除[root@localhost ~]# var1="I love you,Do you love me"[root@localhost ~]# echo ${var1#*ov}e you,Do you love me例2:从头匹配最长删除[root@localhost ... ...
分类:
其他好文 时间:
2020-02-07 22:41:14
阅读次数:
112
1. let关键字 (1)基本用法:let关键字用来声明变量,它的用法类似于var,都是用来声明变量。 (2)块级作用域:let声明的变量,只在let关键字所在的代码块内有效。 { var a = 10; let b = 10; } console.log(a); //10 console.log( ...
分类:
其他好文 时间:
2020-02-05 23:02:53
阅读次数:
65
源程序: #include <iostream>#include <fstream>using namespace std; class triangle{private: int a, b, c; double area;public: triangle(int aa, int bb, int c ...
分类:
其他好文 时间:
2020-02-05 20:31:04
阅读次数:
72