27 Matching Annotations
- Jul 2020
-
www.jiakaobaodian.com www.jiakaobaodian.com
-
•标志题(274题)
35, 67, 72, 73, 74, 82, 165, 206, 223, 243
-
•仪表、指示灯题(114题)
23, 40, 62, 74
-
•驾驶证相关题(107题)
97, 99, 104
-
•责任判定题(93题)
64, 68
-
•灯光使用题(83题)
34, 66, 69, 80
-
•高速公路题(72题)
3, 8, 16
-
•道路通行原则题(81题)
4, 62
-
•交通信号灯题(70题)
54
-
•特殊路段题(65题)
2, 10, 14
-
•意外事故处理题(52题)
32
-
•普通路段题(64题)
8
-
•安全常识题(44题)
40
-
•速度题(56题)
4, 33, 34, 46
-
•标线题(85题)
19 28
-
- Sep 2019
-
akaedu.github.io akaedu.github.io
-
2、如果在一个程序中调用了printf函数却不包含头文件,例如int main(void) { printf("\n"); },编译时会报警告:warning: incompatible implicit declaration of built-in function ‘printf’。请分析错误原因。
如果没有包含头文件,那么在main函数中调用printf之前没有声名这个函数,不可用。
-
- Jan 2019
-
localhost:8008 localhost:8008
-
SECRET_KEY
可以用来保护表单免受csrf攻击。
-
-
localhost:8008 localhost:8008
-
列表解析虽然可以等效于for循环,但是比for循环快了两倍
-
-
localhost:8008 localhost:8008
-
get
这个get是dict 的方法,如果dict中有第一个参数的键,那么返回他的值,如果没有,则返回第二个参数,如果没有设置第二个参数,那么返回none。
-
- Dec 2018
-
localhost:8008 localhost:8008
-
3.2 表ADT
- 前驱 和 后继 的概念。第一个元素没有前驱,最后一个元素没有后继。
- list 的常用ADT操作集合:
- printList: 打印表;
- makeEmpty: 清空表;
- Find:返回某个元素在表中的第一个index;
- Insert:在某个index下插入元素;
- Delete:在某个index下删除元素;
- FindKth:返回在第K个index下的元素;
3.2.1
-
-
localhost:8008 localhost:8008
-
2.1
本书的操作系统的概念指的是kernel。
-
-
localhost:8008 localhost:8008
-
请求报文的主体一般为空
请求报文一般是用GET方法,get方法的查询字符串在URL地址栏中显示。如果提交了表单,就会使用post方法,这时候查询字符串在请求报文的body 中显示。
-
say_hello
勘误:应为greet
-
-
developer.mozilla.org developer.mozilla.org块级元素1
-
block elements
- div,p,h1~h6,hr
- 列表【ul, ol,li】
- 结构【header, nav, aside, main,article, section,footer】
- 表格【table,figcaption】
- 表单【form, fieldset】
- 引用【blockquote,pre】
-
-
192.168.0.13:8080 192.168.0.13:8080语言的历史1
-
test
-
-
localhost:8000 localhost:8000
-
文化:相信自己的口号
2018-12-25 15:36:51
-
-
localhost:8008 localhost:8008
-
how to set atom/vim/pycharm snippets?
-
关系选择器
- 后代选择器 - adjacent -
a b
- 子代选择器 - children -
a > b
- 兄弟选择器 - sibling -
a ~ b
- 相邻兄弟选择器 - adjacent sibling -
a + b
重要:关系选择器从右向左解析,因此要注意选择的边界
- 后代选择器 - adjacent -
-