自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(21)
  • 资源 (8)
  • 收藏
  • 关注

原创 ***没有规则可以创建“XXX”需要的目标“XXX”问题的解决方案

在第4季 上学期  专题2-U-Boot新手入门中,1,在Linux中解压uboot_tq2440.tar.gz2,tar xvzf uboot_tq2440.tar.gz3,进入 uboot_tq2440/ 4,make TQ2440_config  (对TQ2440开发板进行配置)5,make ARCH=arm CROSS_COMPILE=arm-linux-   (进行编

2015-06-29 19:44:47 20557

转载 时间编程--gettimeofday(获取高精度时间)

#include <stdio.h>#include <sys/time.h>/***********************name:gettimeofday.c*author:QG*time:2015-05-13*description:***********************/int main(){ //struct timeval *tv; struct

2015-06-21 19:19:56 883

转载 时间编程--asctime(以字符串方式显示时间)

#include <stdio.h>#include <time.h>/*************************name:asctime.c*author:QG*time:2015-05-13*description:****************************/int main(){ struct tm *c_tm; time_t c_time

2015-06-21 19:18:54 480

转载 时间编程 --localtime(获取本地时间)

#include <stdio.h>#include <time.h>/**************************name:localtime.c*author:QG*time:2015-05-13*description:**************************/int main(){ struct tm *c_tm; time_t c_time

2015-06-21 19:17:56 724

转载 时间编程--获取格林威治时间 gmtime

#include <stdio.h>#include <time.h>/***********************name:gmtime.c*author:QG*time:2015-05-12*description:**********************/int main(){ time_t c_time; struct tm *c_tm; c_t

2015-06-21 19:16:41 1131

转载 时间编程--time

#include <stdio.h>#include <time.h>/************************name:time.c*author:QG*time:2015-05-12*description:***************************/int main(){ time_t c_time; c_time = time(NULL);

2015-06-21 19:15:53 320

转载 库函数调用 --综合实例(文件copy)

#include <stdio.h>/******************name:file_cp.c*author:QG*time:2015-05-12*description:********************/int main(int arge,char **argv){ FILE *fp_in; FILE *fp_out; char buf[1024

2015-06-21 19:13:48 472

转载 库函数调用 5--fseek

#include <stdio.h>/****************************name:fseek.c*author:QG*time :2015-05-12*description:****************************/int main(){ FILE *fp_in; char *in_file_name = "./123.txt";

2015-06-21 19:12:53 328

转载 库函数调用 4--fwrite

#include <stdio.h>/*************************name:fwrite.c*author:QG*time:2015-05-12*description:***************************/int main(){ FILE *fp_in; FILE *fp_out; char *in_file_name =

2015-06-21 19:12:06 379

转载 库函数调用 3--fread

#include <stdio.h>/********************name:fread.c*author:QG*time:2015-05-12*description:read a item from a file.********************/int main(){ FILE *fp; char c_buf[11]; int a = 1

2015-06-21 19:11:21 415

转载 库函数调用 2--fclose

#include <stdio.h>/************************name:fclose.c*author:QG*time:2015-05-12*description:************************/int main(){ FILE *fp; char *file_name = "./123.txt"; int a

2015-06-21 19:10:31 347

转载 库函数调用 1--fopen

#include <stdio.h>/********************name:fopen.c*author:QG*time :2015-05-12*description:try to open a file for reading and writing,the file will be created if it does not exist. **************

2015-06-21 19:09:53 383

转载 系统调用 8--综合实例(txt_to_txt)

#include <stdio.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <unistd.h>/************************file:txt_to_txt.c*author:QG*time:2015-05-11*description:read datas fro

2015-06-21 19:08:22 337

转载 系统调用 7--综合实例1(文件复制)

#include <stdio.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <unistd.h>/*********************************file:file_cp.c*author:QG*time:2015-05-11*description:******

2015-06-21 19:07:20 491

转载 系统调用 6--lseek

#include <stdio.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <unistd.h>/**********************file: lseek.c*author:QG*time:2015-05-11*description:*******************

2015-06-21 19:04:54 441

转载 系统调用 5--write

#include <stdio.h>#include <sys/stat.h>#include <sys/types.h>#include <fcntl.h>#include <unistd.h>/**************************file:write.c*author:QG*time:2015-05-11*description:***************

2015-06-21 19:04:03 502

转载 系统调用 4--read

#include <stdio.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <unistd.h>/***********************************file:read.c*author:QG*time:2015-05-10*description:********

2015-06-21 19:02:51 425

转载 系统调用3--close

#include #include #include #include #include /*******************************file:close.c*author:QG*time:2015-05-10*note:********************************/int main(){ char *pt = ".

2015-06-21 18:59:32 359

转载 系统调用2 --creat

#include #include #include #include /************************************fie:creat.c*author:QG*time:2015-05-10*note:exercise the function of creat***********************************/int

2015-06-21 18:58:36 493

转载 系统调用1--open函数的使用

#include #include #include #include /************************************fie:open.c*author:QG*time:2015-05-10*note:exercise the function of open***********************************/void main(){ //char

2015-06-21 18:55:34 396

原创 试题1

Given an array of integers, find out whether there are two distinct indices i and j in the array such that the difference between nums[i] andnums[j] is at most t and the difference between i and

2015-06-01 18:02:42 396

Flex_&_Bison.zip

介绍Flex及Bison使用的高清pdf。

2021-04-21

Linux’s IPsec implementation.pdf

描述IPsec 在Linux下的实现及背景内容,包含Linux下IPsec工具,内核IPsec支持等内容。

2021-04-21

the java programming language fourth editionArnoldGoslingHolmes06

the java programming language fourth editionArnoldGoslingHolmes06 Direct from the creators of the Java™ programming language, the completely revised fourth edition of The Java™ Programming Language is an indispensable resource for novice and advanced programmers alike. Developers around the world have used previous editions to quickly gain a deep understanding of the Java programming language, its design goals, and how to use it most effectively in real-world development. Now, Ken Arnold, James Gosling, and David Holmes have updated this classic to reflect the major enhancements in Java™ 2 Standard Edition 5.0 (J2SE™ 5.0). The authors systematically cover most classes in Java's main packages, java.lang.*, java.util, and java.io, presenting in-depth explanations of why these classes work as they do, with informative examples. Several new chapters and major sections have been added, and every chapter has been updated to reflect today's best practices for building robust, efficient, and maintainable Java software.

2014-08-30

ascii-码表

ASCII码使用指定的7位或8位二进制数组合来表示128或256种可能的字符。标准ASCII码也叫基础ASCII码,使用7位二进制数来表示所有的大写和小写字母,数字0到9、标点符号,以及在美式英语中使用的特殊控制字符(这里需要特别注意:ASCII码与标准ASCII码的位数上的区分,标准ASCII码是7位二进制表示)。 十进制编码 (对应)缩写字符(或功能/解释) 0 NUL(null) 空字符 1 SOH(start of headline) 标题开始 2 STX (start of text) 正文开始 3 ETX(end of text) 正文结束 4 EOT (end of transmission) 传输结束 5 ENQ (enquiry) 请求 6 ACK (acknowledge) 收到通知 7 BEL (bell) 响铃 8 BS (backspace) 退格 9 HT (horizontal tab) 水平制表符 10 LF (NL line feed, new line) 换行键 11 VT (vertical tab) 垂直制表符 12 FF (NP form feed, new page) 换页键 13 CR (carriage return) 回车键 14 SO (shift out) 不用切换 15 SI (shift in) 启用切换 16 DLE (data link escape) 数据链路转义 17 DC1 (device control 1) 设备控制1 18 DC2 (device control 2) 设备控制2 19 DC3 (device control 3) 设备控制3 20 DC4 (device control 4) 设备控制4 21 NAK (negative acknowledge) 拒绝接收 22 SYN (synchronous idle) 同步空闲 23 ETB (end of trans. block) 传输块结束 24 CAN (cancel) 取消 25 EM (end of medium) 介质中断 26 SUB (substitute) 替补 27 ESC (escape) 换码(溢出) 28 FS (file separator) 文件分割符 29 GS (group separator) 分组符 30 RS (record separator) 记录分离符 31 US (unit separator) 单元分隔符 32 space 空格 33 ! 34 " 35 # 36 $ 37 %

2014-08-30

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除