自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(8)
  • 资源 (44)
  • 收藏
  • 关注

原创 位的计算

#include #include struct stFlag{unsigned char first: 1;unsigned char second: 1;unsigned char third: 6;};int main(){stFlag f;f.first = 0;f.second = 0;f.third = 0x0f;

2012-11-24 00:24:35 452

转载 数据及相应存储区

这是一个前辈写的,非常详细 //main.cpp int a = 0; 全局初始化区 char *p1; 全局未初始化区 main() { int b; 栈 char s[] = "abc"; 栈 char *p2; 栈 char *p3 = "123456"; 123456\0在常量区,p3在栈上。 static int c =0; 全局(静态)初始化区 p1 = (cha

2012-11-15 23:58:42 782

转载 野指针

昨天在写完一个函数后,因里面用了很多指针操作, 写完后就回过头来检查,结果发现了一个”野指针”, 另我非常奇怪的是,这个”野指针”被我再次使用,程序运行居然没有问题.就是这个疑问, 引发了我写这篇文章.先说说什么是“野指针“。首先”野指针”的概念只会出现在像C和C++这种没有自动内存垃圾回收功能的高级语言中, 所以java或c#肯定不会有野指针的概念. 当我

2012-11-15 23:45:24 12085 2

转载 C语言中printf格式化输出函数

用 法  int printf(const char *format,[argument]);  format 参数输出的格式,定义格式为:  %[flags][width][.perc] [F|N|h|l]type  规定数据输出方式,具体如下:  1.type 含义如下:  d 有符号10进制整数  i 有符号10进制整数  o

2012-11-14 00:03:39 996

原创 结构体中成员变量偏移量

#include struct student{int a;int d;int b;int c;};  int main()     {   printf("%d\n", &(((struct student *)0)->b));printf("%d\n", ((unsigned int)(p) - ((unsigned int)&(p->b

2012-11-11 00:13:32 549

原创 链表的创建和打印

#include #include int n = 0;struct student{int num;    student *next;};student *create(){student *head, *p1, *p2;p1 = (student *)malloc(sizeof(student));    p2

2012-11-09 00:19:00 514

转载 指向函数的指针

#include float max(float x, float y){return x > y ? x : y;}int main(){float a = 1.1, b = 2.2;float (*p)(float x, float y);p = max;printf("%f\n", (*p)(a, b));return 0;

2012-11-07 23:01:47 468

转载 strlen与sizeof区别(转载)

#include "stdio.h"#include "string.h"void main(){char aa[10];printf("%d",strlen(aa));printf("%d",sizeof(aa));}程序运行得到结果是strlen(aa)=15.sizeof(aa)=10;这是怎么回事呢?strlen是有效字符串的长度,不包含‘\0’,与初始化有

2012-11-07 22:40:21 420

15_day_mini2

15_day_mini2

2018-10-25

Dark-Reader.crx

chrome 黑色主题,比较适合夜间浏览,有利于保护眼睛,chrome 黑色主题,比较适合夜间浏览,有利于保护眼睛

2018-08-09

chatserverclientepoll

c epoll server clientc epoll server clientc epoll server clientc epoll server client

2018-08-04

类everything java源码

java实现的类everything源码,当前未支持文件添加,删除操作的更新,有一些日志方便开发使用,当然代码有一些冗余,当前支持,多字符串搜索,支持正则表达式搜索,用于学习,来自于: https://download.csdn.net/download/chousheng/4782687#comment

2018-06-13

Orange's chapter8a修改后可以查看消息流程的版本

Orange's chapter8a修改后的版本方便消息流程分析 https://blog.csdn.net/r77683962/article/details/79826404

2018-04-05

chapter5_i

os orange chapter5_i os orange chapter5_i os orange chapter5_i os orange chapter5_i

2018-03-13

汇编语言王爽

汇编语言王爽汇编语言王爽汇编语言王爽汇编语言王爽汇编语言王爽

2018-02-15

SourceInsight4

SourceInsight4SourceInsight4SourceInsight4SourceInsight4

2018-02-15

javac_可以编译目录.rar

jdk9 javac编译器 源码 当前可以根据用目录作为参数进行编译 谢谢

2018-01-20

jdk9_javac.rar

jdk9 javac编译器,从编译器解压出来的大包不能直接用于编译,会报package冲突,做了一些处理后可以用于本地编译和调试

2018-01-07

Linux内核阅读心得体会

Linux内核阅读心得体会

2016-10-30

xdotool源代码

xdotool_3.20150503.1.orig.tar 

2016-03-16

clicks模拟鼠标键盘

clicks use for simulate mouse and keyboard actions. Manul: clicks display help information clicks s x sleep x ms clicks m x y mouse cursor move from current position to current.x+x current.y+y position clicks mt x y mouse cursor move to x, y clicks l click left button clicks dl double click leftbutton clicks r click right button clicks dr double click rightbutton clicks e x lines of operation in file clicks sr/er start/end record your operations clicks i string input string at mouse cursor Examples: clicks s 2000 clicks m 100 100 clicks mt 100 100 clicks l clicks r clicks dr clicks dl clicks i "hello clicks!" clicks sr clicks er clicks e a.txt a.txt: mt 100 100 s 1 m 300 300 s 1 l ...

2016-03-13

unix网络编程

unix网络编程

2012-05-13

NS2新的RTP协议

NS2新的RTP协议

2012-04-10

计算机编程的艺术

计算机编程的艺术

2012-02-29

UML基础教程

UML基础教程

2012-02-29

计算机网络

计算机网络计算机网络计算机网络计算机网络计算机网络

2011-10-21

程序员面试宝典

程序员面试宝典程序员面试宝典程序员面试宝典程序员面试宝典

2011-10-21

面向对象技术UML教程

面向对象技术UML教程面向对象技术UML教程面向对象技术UML教程面向对象技术UML教程

2011-10-21

linux给net/socket.c部分接口添加pr-info后运行情况

111

2024-06-13

linux给net/socket.c部分接口添加pr-info后运行情况

111

2024-06-13

[97世界编程大赛4K组]ts代码运行展示.mp4

1、代码源头及演示:https://supersodasea.github.io/Omniscent/ 2、修改了些代码,减少和修改了些代码行方便阅读和调试,但是原代码有魔鬼数字,实在看不懂 3、源代码用到了些图形学相关知识; 4、当前运行代码地址及分支:https://gitee.com/r77683962/Omniscent,分支:Only2Files 5、该视频未配声音。

2024-05-05

SI4安装文件及操作流程

SI4安装文件及操作流程

2022-08-01

EDK II Documentation

EDK II Documentation EDK2代码中工程文件

2022-07-10

小米商城网站示例模仿商城

小米商城网站示例模仿商城

2022-01-21

前端项目带有可定制菜单示例

前端

2022-01-21

YunGameDownload.zip

操作系统显示中文字符

2020-06-21

kern.log linux start

LINUX 启动日志记录(包含文件,函数,没有行数),内核版本5.3.1 添加打印日志添加打印日志添加打印日志

2019-11-10

dmesg_with_pr_info_add_file_function.log

dmesg_with_pr_info_add_file_function.log dmesg_with_pr_info_add_file_function.log

2019-11-03

kernel start log.txt with log

kernel start log with init/main.c and kernel/idle.c modified

2019-10-29

boot.zip Linux kerner grub 5.0.1压缩包

linux kernel grub 5.0.1起动文件汇总,如果是自己新编译的内核,需要把vmlinuz-5.0.0-13-generic和initrd.img-5.0.0-13-generic拷贝到boot目录。

2019-09-14

records.txt

Ubuntu 19.04 Upgrade kernel from 5.0.0 to 5.0.1 generated files

2019-08-24

scrapy1.5-chinese-document-master.zip

scrapy1.5-chinese-document-master.zip

2019-07-07

hibernate-release-5.0.12.Final.rar

hibernate-release-5.0.12.Final.rar

2019-06-17

30day 的07_day 添加了大屏显示1024*768,适配了中文显示

30day 的07_day 添加了大屏显示1024*768,适配了中文显示30day 的07_day 添加了大屏显示1024*768,适配了中文显示30day 的07_day 添加了大屏显示1024*768,适配了中文显示

2019-04-14

30day pdf+codes

30day pdf+codes

2019-04-11

15_day_mini2.rar

30dayos, mini code

2019-04-08

引导扇区设置显示1024*768分辨率

引导扇区设置显示1024*768分辨率

2018-10-25

15_day_mini

15_day_mini

2018-10-24

空空如也

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

TA关注的人

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