摘要: #include <iostream> #define Main main #define COLOR_GREEN system("color 2"); #include <vector> #include <list> #include <string> #include <WinSock2.h> 阅读全文
posted @ 2019-11-15 23:32 YZFHKMS-X 阅读(478) 评论(0) 推荐(0) 编辑
摘要: { https://www.orcode.com/article/Processes_20126324.html } { 或代码 文章 编程通用 线程,进程及IPC 与NtQueryInformationProcess获取进程信息 {A} {S0}简介本文将展示一种方法来读取一个过程的下列项目,主要 阅读全文
posted @ 2019-11-15 22:14 YZFHKMS-X 阅读(1119) 评论(0) 推荐(0) 编辑
摘要: { http://www.dependencywalker.com/ } { Download the latest version here: Download Version 2.2.6000 for x86 (Windows 95 / 98 / Me / NT / 2000 / XP / 20 阅读全文
posted @ 2019-11-15 22:10 YZFHKMS-X 阅读(358) 评论(0) 推荐(0) 编辑
摘要: { 创建一个win32 窗口项目,不是控制台的 把exe改为src文件 复制到windows目录下 ok } 阅读全文
posted @ 2019-11-15 21:36 YZFHKMS-X 阅读(209) 评论(0) 推荐(0) 编辑
摘要: bool b = 5 == 55; std::cout << b<< std::endl; EX 阅读全文
posted @ 2019-11-15 21:31 YZFHKMS-X 阅读(82) 评论(0) 推荐(0) 编辑
摘要: // 转载自 :https://www.cnblogs.com/wuyepeng/p/9741241.html { 为什么要使用智能指针:我们知道c++的内存管理是让很多人头疼的事,当我们写一个new语句时,一般就会立即把delete语句直接也写了,但是我们不能避免程序还未执行到delete时就跳转 阅读全文
posted @ 2019-11-15 21:04 YZFHKMS-X 阅读(208) 评论(0) 推荐(0) 编辑
摘要: { https://github.com/zhmmmm/ANYTOOL-2.0.0.0.2Version } 阅读全文
posted @ 2019-11-15 20:43 YZFHKMS-X 阅读(97) 评论(0) 推荐(0) 编辑
摘要: { https://github.com/zhmmmm/OpenGL_ES } 阅读全文
posted @ 2019-11-15 20:42 YZFHKMS-X 阅读(117) 评论(0) 推荐(0) 编辑
摘要: { https://github.com/glfw/glfw } 阅读全文
posted @ 2019-11-15 20:41 YZFHKMS-X 阅读(136) 评论(0) 推荐(0) 编辑
摘要: { Bin (二进制) Oct (八进制) Dec (十进制) Hex (十六进制) 缩写/字符 解释 0000 0000 00 0 0x00 NUL(null) 空字符 0000 0001 01 1 0x01 SOH(start of headline) 标题开始 0000 0010 02 2 0 阅读全文
posted @ 2019-11-15 20:24 YZFHKMS-X 阅读(855) 评论(0) 推荐(0) 编辑
摘要: { 命名规范类命名1)所有的类名,接口名(Protocol)均以大写字母开头,多单词组合时,后面的单词首字母大写。 类,接口名必须是有意义的,切忌使用中文拼音命名。另外所有类都要加标致前缀:“OP”2)继承自UIView的类以View结尾。 例如:OperatorUsersInfomationVie 阅读全文
posted @ 2019-11-15 19:12 YZFHKMS-X 阅读(211) 评论(0) 推荐(0) 编辑
摘要: { https://github.com/zhmmmm/Kotlin } 阅读全文
posted @ 2019-11-15 18:44 YZFHKMS-X 阅读(92) 评论(0) 推荐(0) 编辑
摘要: { …or create a new repository on the command line echo "# Kotlin" >> README.md git init git add README.md git commit -m "first commit" git remote add 阅读全文
posted @ 2019-11-15 16:02 YZFHKMS-X 阅读(141) 评论(0) 推荐(0) 编辑
摘要: { https://www.runoob.com/kotlin/kotlin-eclipse-setup.html } 阅读全文
posted @ 2019-11-15 15:55 YZFHKMS-X 阅读(135) 评论(0) 推荐(0) 编辑
摘要: { kotlin: run Kotlin programs, scripts or REPL.Usage: kotlin <options> <command> <arguments>where command may be one of: foo.Bar Runs the 'main' funct 阅读全文
posted @ 2019-11-15 15:15 YZFHKMS-X 阅读(93) 评论(0) 推荐(0) 编辑
摘要: { https://github.com/JetBrains/kotlin/releases/tag/v1.3.50 } 阅读全文
posted @ 2019-11-15 15:03 YZFHKMS-X 阅读(209) 评论(0) 推荐(0) 编辑
摘要: { Usage cmake [options] <path-to-source> cmake [options] <path-to-existing-build>Specify a source directory to (re-)generate a build system for it in 阅读全文
posted @ 2019-11-15 14:38 YZFHKMS-X 阅读(420) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.aprivate.lib" android:version 阅读全文
posted @ 2019-11-15 09:52 YZFHKMS-X 阅读(893) 评论(0) 推荐(0) 编辑
摘要: <activity android:name="xxxActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenSize" android:launchMode="singleTask">VALUE DESC 阅读全文
posted @ 2019-11-15 09:50 YZFHKMS-X 阅读(303) 评论(0) 推荐(0) 编辑