上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: // testfindfile.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include <iostream> #include <windows.h> bool SearchFilesByWildcard(const WCHAR* wildcardPath) 阅读全文
posted @ 2023-11-02 16:43 leochan007 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 要将JSON转换为Go结构体,您可以使用json.Unmarshal()函数。首先,您需要定义一个与JSON数据结构匹配的Go结构体,然后使用json.Unmarshal()将JSON数据解码为该结构体。以下是一个示例:假设有如下JSON数据: { "name": "John Doe", "age" 阅读全文
posted @ 2023-10-12 18:01 leochan007 阅读(116) 评论(0) 推荐(0) 编辑
摘要: http://www.aslion.com/aslion2/download/NetAssist.rar http://www.aslion.com/aslion2/electrondocuments/tcp_debug_tools.html 阅读全文
posted @ 2023-08-03 12:26 leochan007 阅读(11) 评论(0) 推荐(0) 编辑
摘要: // testmutex.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include <iostream> #include "windows.h" HANDLE m_hMutex; #include<list> using namespace std; lis 阅读全文
posted @ 2023-05-24 15:34 leochan007 阅读(4) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <table border="1px"> <tr id="filed"> <td id="id">ID 阅读全文
posted @ 2023-04-09 15:48 leochan007 阅读(8) 评论(0) 推荐(0) 编辑
摘要: std::string& trim(std::string& s){ if (s.empty()) { return s; } s.erase(0, s.find_first_not_of(" ")); s.erase(s.find_last_not_of(" ") + 1); return s;} 阅读全文
posted @ 2023-03-16 15:14 leochan007 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 向量点积(Dot Product),向量叉积(Cross Product) 参考的是《游戏和图形学的3D数学入门教程》,非常不错的书,推荐阅读,老外很喜欢把一个东西解释的很详细。 1.向量点积(Dot Product) 向量点积的结果有什么意义?事实上,向量的点积结果跟两个向量之间的角度有关。 2. 阅读全文
posted @ 2023-02-15 16:05 leochan007 阅读(195) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <link rel="stylesheet" href="/common/lib/layui-v2.5.5/css/layui.css" media="all"> <script src=" 阅读全文
posted @ 2023-02-14 20:53 leochan007 阅读(19) 评论(0) 推荐(0) 编辑
摘要: wmic process where name="qq.exe" call terminate 阅读全文
posted @ 2023-02-09 16:16 leochan007 阅读(20) 评论(0) 推荐(0) 编辑
摘要: C++中将string类型转换为double的方法:#include <iostream>#include <sstream> //使用stringstream需要引入这个头文件using namespace std;//模板函数:将string类型变量转换为常用的数值类型(此方法具有普遍适用性)t 阅读全文
posted @ 2023-02-08 14:51 leochan007 阅读(45) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页