自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 webbuilder 案例 大屏看板

webbuilder开发大屏展示

2023-11-02 15:14:29 136 1

原创 webbuilder 案例 vue组件

webbuilder案例之封装vue组件

2023-11-02 14:58:13 143 1

原创 webbuilde 案例 门户页面

运行效果。

2023-11-02 14:32:53 78 1

原创 指针函数 和 函数指针 指针为参数时使用堆内存

/*-----函数指针 + 出参-----*/ #include #include #include char *GetString(char **p) { *p = (char *)malloc(11); strcpy(*p,"hello world"); return *p; } int main() { char *pStr = NULL;

2015-05-21 09:38:54 346

原创 进程间通信 SOCKET Client

#include #include #include #include #include #include #include #include #include #include #include #include #include int readnet( int sockid, register char *ptr, short nbytes) { int

2015-05-21 09:33:21 372

原创 进程间通信 SOCKET Server

#include #include #include #include #include #include #include #include #include #include #include #include int server() { int iSockfd = socket(PF_INET,SOCK_STREAM,0); /*1. 准备socket*/

2015-05-21 09:30:00 288

原创 windows 缓冲区溢出 简单例子

#include //#define sz1 "hello" int main(int argc, char *argv[]) { //char sz1[8] = "hello"; //const char *sz1 = "hello"; char sz1[8]; char sz2[8]; memset(sz1,0x00,sizeof(sz1));

2015-05-19 17:38:28 1142

空空如也

空空如也

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

TA关注的人

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