自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (19)
  • 收藏
  • 关注

原创 linux grep 查询 多个文件中的 一个信息 echo

linux grep 查询 多个文件中的 一个信息 echo[yelenn@localhost ~]$ grep echo *.shgor.sh:echo go $0mnt.sh:echo "mount //PC-20190726WDWD/share /mnt/win"rgo.sh:echo go $0 $1[yelenn@localhost ~]$...

2020-03-15 19:25:35 1913

原创 十六进制转浮点值算法C++互转

算法

2022-04-28 10:44:11 641

原创 十六进制 转浮点值C++ 算法

十六进制 转浮点值C++ 算法

2022-04-28 10:08:09 1191

原创 电器TM241 数据寄存器设置数据 获取数据例子

电器TM241 数据寄存器设置数据 获取数据例子

2022-02-10 10:22:47 1363

原创 MYSQL 查看语句001

SELECT COUNT(1) AS `ACTIVITY记录数` FROM `ACTIVITY`;SELECT COUNT(1) AS `VESSEL记录数` FROM `VESSEL`;SELECT COUNT(1) AS `CALL_PORT记录数` FROM `CALL_PORT`;SELECT COUNT(1) AS `EQP_CLASS记录数` FROM `EQP_CLASS`;SELECT COUNT(1) AS `EQP_STA_REF记录数` ...

2021-07-20 18:32:44 190

转载 HTML DIV 多层显示测试

<!doctype html><html><head> <title>table contenteditable</title> <style type="text/css"> .bg_img { /*相对位置*/ position: relative; width: 625px; height: 352px;}.ms { /*绝对位置*/...

2020-07-03 17:16:34 364

转载 转载 chrome V8 编译实录 与 windows下 V8 JS引擎 编译 2016-06-30

chrome V8 编译实录windows下 V8 JS引擎 编译 2016-06-30https://www.cnblogs.com/jixiaohui/archive/2012/08/13/V8-build.htmlhttps://blog.csdn.net/herorazor/article/details/51792793git clone -ccore.deltaBaseCacheLim...

2018-04-04 20:06:22 412

转载 google V8 Engine source code 与 Node.js

google  V8  Engine source code 与 Node.jshttps://github.com/v8/v8

2018-04-04 19:53:00 347

原创 源于Design Pattern Explanation with C++ Implementation的 设计模式 C++

1、单例模式(Singleton Pattern )2、抽象工厂模式(Abstract Factory Pattern )3、工厂方法模式(Factory Method Pattern )4、简单工厂模式(Simple Factory Pattern )5、建造者模式(Builder Pattern )6、原型模式(Prototype Pattern )7、结构模式(Str

2017-04-01 16:26:26 2378

kafka_zookeeper_ok.rar

zookeeper kafka 运行windows上

2021-03-23

MonServer.zip

mongoose visual studio 2019 c++

2021-03-23

64bitMCU8.zip

c 语言 判断 64位还是32位

2021-03-22

jquery_qrcode_20210301_ok.zip

动态生成二维码代码 HTML

2021-03-01

mysql_4.1.21_compiled_ok_2021.tar.gz

mysql 已经编译 centos3

2021-02-04

mysql-4.1.21.tar.gz

mysql source

2021-02-04

机动车驾驶证申请表.xls

机动车驾驶证申请表.xls一、使用黑色、蓝色墨水笔,用中文填写,字体工整,不得涂改。 二、标注有“□”符号的为选择项目,选择后在“□”中划“√”。 三、本表所设各栏均应认真填写,不得空项。

2020-05-09

机动车驾驶人身体条件证明.xls

机动车驾驶人身体条件证明.xls一、使用黑色、蓝色墨水笔,用中文填写,字体工整,不得涂改。 二、标注有“□”符号的为选择项目,选择后在“□”中划“√”。 三、本表所设各栏均应认真填写,不得空项。其中,“本人申告事项”栏和“本人签字”必须由本人填写;“医疗机构填写事项”栏和医生签字必须由经办的医生填写并签字,对于肢体不健全的,应当写明肢体缺失的部位和程度。“委托代理人信息”和“代理人签字”必须由代理人填写。

2020-05-09

机动车驾驶人身体条件证明.xls

机动车驾驶证申请表机动车驾驶证申请人应当如实申告是否具有下列不准申请 机动车驾驶证申请人应当如实申告是否具有下列不准申请

2020-05-09

andorid mqtt websocket app

安卓 andorid mqtt websocket andorid mqtt websocket app

2018-08-05

strtok的缺陷,使用strtok_s函数更新安全度

strtok的缺陷,使用strtok_s函数更新安全度 #include "stdafx.h" #include "Windows.h" #include #include using namespace std; char string1[] = "A string\tof ,,tokens\nand some more tokens"; char string2[] = "Another string\n\tparsed at the same time."; char separators[] = " ,\t\n"; char *token1, *token2, *next_token1, *next_token2; int main(void) { cout << "Tokens:" << endl; // establish a string and get the first token: token1 = strtok_s(string1, separators, &next;_token1); token2 = strtok_s(string2, separators, &next;_token2); // while there are tokens in "string1" or "string2" while ((token1 != NULL)) { // get the next token: if (token1 != NULL) { cout << token1 << endl; token1 = strtok_s(NULL, separators, &next;_token1); OutputDebugString(_T(token1)); } } while ((token2 != NULL)) { // get the next token: if (token2 != NULL) { cout << token2 << endl; token2 = strtok_s(NULL, separators, &next;_token2); OutputDebugString(_T(token2)); } } Sleep(3000); system&#40;"pause"&#41;;

2018-04-12

phpstudy 需要vc9运行库 vcredist_x86.exe

phpstudy 需要vc9运行库 vcredist_x86.exe Microsoft Visual C++ 2008 SP1 Redistributable Package (x86) https://www.microsoft.com/en-us/download/details.aspx?id=5582

2018-04-11

vc6 std 调用 十六進制 轉化

vc6 std c++ call

2017-07-13

C++ 标准程序库 PDF

C++ 标准程序库 PDF

2017-03-29

23种设计模式 C++ PDF

23种设计模式(C++) PDF

2017-03-29

load md5 opengl c++ mfc

load md5 opengl c++ mfc

2017-03-28

3d unit source code for learn mfc c++ phyx

三维编程opengl MFC VC++

2017-03-28

VC C++ 3DUnit MFC 學習代碼OPENGL

VC C++ 3DUnit MFC 學習代碼OPENGL

2017-03-08

空空如也

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

TA关注的人

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