码迷,mamicode.com
首页 >  
搜索关键字:short    ( 4647个结果
STM32-构建库函数雏形
构建库函数雏形 修改寄存器地址封装 代码清单 8 1 封装寄存器列表 c //volatile 表示易变的变量,防止编译器优化 define __IO volatile typedef unsigned int uint32_t; typedef unsigned short uint16_t; / ...
分类:其他好文   时间:2019-07-18 20:00:19    阅读次数:137
spark源码之SparkContext
SparkContext可以说是Spark应用的发动机引擎,Spark Drive的初始化围绕这SparkContext的初始化。 SparkContext总览 sparkcontxt的主要组成部分 sparkEnv:spark运行环境,Executor是处理任务的执行器,依赖于SparkEnv的环 ...
分类:其他好文   时间:2019-07-18 19:25:12    阅读次数:117
JAVA基本类型和引用类型
一、基本数据类型 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
c语言进阶9-值传递与地址传递
一、 函数的值传递 函数的值传递是指参数为基本类型时,如整型、浮点型、字符型(特指单字符型)时,参数传递时是从实参拷贝一份值传给形参,形参的变化不会影响实参的值。 基本类型:是指整型(short int long等)、浮点型(float、double)、字符型(char特指单字符型) 当参数为基本类 ...
分类:编程语言   时间:2019-07-16 10:36:47    阅读次数:151
(C/C++) 32bit \ 64bit 記憶體空間
64 bit : 32 bit : ...
分类:编程语言   时间:2019-07-15 22:40:48    阅读次数:142
Boost Your Career with 200-150 Exam Cram Questions
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
2019年7月15日(C语言)
一、字符串函数 -> 追加字符串 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
django的url分发封装
url的分发与封装 组件和应用App的区别,组件其不仅服务于当前项目,其还可以服务于其他项目,即可以重复使用, 路由分发的格式,路由器分发path()中第二个参数可以是视图方法,也可以是路由分发,传一个元祖,第一个数据是路径匹配用[]括起来路径,第二,第三个是None,path里面还可以嵌套,即可以 ...
分类:Web程序   时间:2019-07-13 09:21:11    阅读次数:141
4647条   上一页 1 ... 82 83 84 85 86 ... 465 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!