构建库函数雏形 修改寄存器地址封装 代码清单 8 1 封装寄存器列表 c //volatile 表示易变的变量,防止编译器优化 define __IO volatile typedef unsigned int uint32_t; typedef unsigned short uint16_t; / ...
分类:
其他好文 时间:
2019-07-18 20:00:19
阅读次数:
137
SparkContext可以说是Spark应用的发动机引擎,Spark Drive的初始化围绕这SparkContext的初始化。 SparkContext总览 sparkcontxt的主要组成部分 sparkEnv:spark运行环境,Executor是处理任务的执行器,依赖于SparkEnv的环 ...
分类:
其他好文 时间:
2019-07-18 19:25:12
阅读次数:
117
一、基本数据类型 java中一共分为8种基本数据类型:byte、short、int、long、float、double、char、boolean,其中byte、short、int、long是整型。float、double是浮点型,char是字符型,boolean是布尔型。 二、引用类型 java为每 ...
分类:
编程语言 时间:
2019-07-17 15:26:05
阅读次数:
116
一、 函数的值传递 函数的值传递是指参数为基本类型时,如整型、浮点型、字符型(特指单字符型)时,参数传递时是从实参拷贝一份值传给形参,形参的变化不会影响实参的值。 基本类型:是指整型(short int long等)、浮点型(float、double)、字符型(char特指单字符型) 当参数为基本类 ...
分类:
编程语言 时间:
2019-07-16 10:36:47
阅读次数:
151
Tired of doing the same job? Get your hands on 200-150 exam It is the nature of the human being that he/she will get tired of doing the same task over ...
分类:
其他好文 时间:
2019-07-15 21:10:50
阅读次数:
98
一、字符串函数 -> 追加字符串 strcat() -> man 3 strcat 使用格式: #include <string.h> char *strcat(char *dest, const char *src); char *strncat(char *dest, const char *s ...
分类:
编程语言 时间:
2019-07-15 18:48:10
阅读次数:
136
/* J. David's webserver */ /* This is a simple webserver. * Created November 1999 by J. David Blackstone. * CSE 4344 (Network concepts), Prof. Zeigler... ...
分类:
其他好文 时间:
2019-07-13 13:32:19
阅读次数:
96
请你讲讲数组(Array)和列表(ArrayList)的区别?什么时候应该使用Array而不是ArrayList? 考察点:Array 参考回答: Array和ArrayList的不同点: Array可以包含基本类型和对象类型,ArrayList只能包含对象类型。 Array大小是固定的,Array ...
分类:
其他好文 时间:
2019-07-13 10:51:21
阅读次数:
138
url的分发与封装 组件和应用App的区别,组件其不仅服务于当前项目,其还可以服务于其他项目,即可以重复使用, 路由分发的格式,路由器分发path()中第二个参数可以是视图方法,也可以是路由分发,传一个元祖,第一个数据是路径匹配用[]括起来路径,第二,第三个是None,path里面还可以嵌套,即可以 ...
分类:
Web程序 时间:
2019-07-13 09:21:11
阅读次数:
141