摘要: 先上图 页面 代码 阅读全文
posted @ 2019-08-11 01:38 iZKang 阅读(723) 评论(0) 推荐(0) 编辑
摘要: g++编译器: 1、g++ -E main.cpp -o main.i 生成预处理文件(.i) 2、g++ -s main.i -o main.s 编译到汇编语言,不进行汇编和链接,即只激活预处理和编译,生成汇编语言(.s) 3、g++ -c main.s -o main.o 编译、汇编到目标代码, 阅读全文
posted @ 2019-04-20 22:16 iZKang 阅读(1008) 评论(0) 推荐(0) 编辑
摘要: 地址:十大经典排序算法总结(JavaScript描述) 阅读全文
posted @ 2019-03-31 14:23 iZKang 阅读(136) 评论(0) 推荐(0) 编辑
摘要: ~2 =-3; 举例:~2 (按位非) 2转换为二进制: 00000010 ~2得到带符号二进制: 11111101 保留符号位 取反再加1: 10000011 10000011 转换十进制: -3 阅读全文
posted @ 2019-03-30 23:05 iZKang 阅读(1569) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 int main() 7 { 8 unordered_map myMap={{ 5, "张大" },{ 6, "李五" }};//使用{}赋值 9 myMap[2] = "李四"; //使用[... 阅读全文
posted @ 2019-03-23 21:59 iZKang 阅读(2947) 评论(0) 推荐(0) 编辑
摘要: 参考: Advanced Installer 打包Winform程序 阅读全文
posted @ 2018-11-20 12:11 iZKang 阅读(2278) 评论(0) 推荐(0) 编辑
摘要: skip-grant-tables:非常有用的mysql启动参数 skip-grant-tables:非常有用的mysql启动参数 ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost'(using password: NO) ER 阅读全文
posted @ 2018-06-25 15:38 iZKang 阅读(1562) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using Foundation; using UIKit; namespace ddd { public partial class ViewController : UIViewController { private List collectionData; ... 阅读全文
posted @ 2017-01-05 21:38 iZKang 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 弹框 4 5 56 57 58 59 60 提示 61 62 63 64 X 65 弹出窗口 66 阿斯顿啊士大夫似的 67 68 69 70 71 72 73 阅读全文
posted @ 2017-01-04 11:14 iZKang 阅读(201) 评论(0) 推荐(0) 编辑
摘要: //旋转手机重新定位视图 /// /// 重新定位视图 /// /// To interface orientation. /// Duration. public override void WillRotate(UIInterfaceOrientation toInterfaceOrientation, d... 阅读全文
posted @ 2017-01-04 09:51 iZKang 阅读(292) 评论(0) 推荐(0) 编辑