会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
leochan007
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
下一页
2023年3月16日
string_Trim
摘要: 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
阅读(12)
评论(0)
推荐(0)
2023年2月15日
向量点积(Dot Product),向量叉积(Cross Product)
摘要: 向量点积(Dot Product),向量叉积(Cross Product) 参考的是《游戏和图形学的3D数学入门教程》,非常不错的书,推荐阅读,老外很喜欢把一个东西解释的很详细。 1.向量点积(Dot Product) 向量点积的结果有什么意义?事实上,向量的点积结果跟两个向量之间的角度有关。 2.
阅读全文
posted @ 2023-02-15 16:05 leochan007
阅读(376)
评论(0)
推荐(0)
2023年2月14日
layui级联操作
摘要: <!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
阅读(47)
评论(0)
推荐(0)
2023年2月9日
终止进程命令
摘要: wmic process where name="qq.exe" call terminate
阅读全文
posted @ 2023-02-09 16:16 leochan007
阅读(39)
评论(0)
推荐(0)
2023年2月8日
泛型stringToNumber
摘要: C++中将string类型转换为double的方法:#include <iostream>#include <sstream> //使用stringstream需要引入这个头文件using namespace std;//模板函数:将string类型变量转换为常用的数值类型(此方法具有普遍适用性)t
阅读全文
posted @ 2023-02-08 14:51 leochan007
阅读(63)
评论(0)
推荐(0)
2022年12月3日
日志类
摘要: //Log.h #ifndef LOG_HEAD_DEF #define LOG_HEAD_DEF #pragma once #include "stdio.h" #include <stdarg.h> ////用变参函数所必须的 #include <time.h> #include <direct
阅读全文
posted @ 2022-12-03 21:19 leochan007
阅读(47)
评论(0)
推荐(0)
2022年11月5日
zint
摘要: 一、Zint1. 介绍 Zint是一个软件,允许在任何广泛的公共领域条形码标准中轻松编码数据,并允许将这种功能集成到您自己的程序中。 Zint项目的目标是提供一个完全跨平台的开源条形码生成解决方案,目前包含了: 一个基于Qt的基础GUI 一个命令行工具 一个允许用户调用API使用Zint的库 2.
阅读全文
posted @ 2022-11-05 09:01 leochan007
阅读(364)
评论(0)
推荐(0)
2022年10月30日
cximage菜单(Mirror)
摘要: // ID_CXIMAGE_MIRROR 文件:CxImage\demo\demoDoc.cpp 菜单项:cximage-》Mirror ON_COMMAND(ID_CXIMAGE_MIRROR, OnCximageMirror) void CDemoDoc::OnCximageMirror() {
阅读全文
posted @ 2022-10-30 15:37 leochan007
阅读(33)
评论(0)
推荐(0)
cximage函数总结(拷贝)
摘要: 链接: https://blog.csdn.net/flame_007/article/details/89293140 http://t.zoukankan.com/lidabo-p-6923386.html
阅读全文
posted @ 2022-10-30 09:41 leochan007
阅读(16)
评论(0)
推荐(0)
cximage菜单(Load Jpeg Resource)
摘要: // 菜单项 cximage-》resource-》Load Jpeg Resource //CxImage\demo\demo.cpp ON_COMMAND(ID_CXIMAGE_LOADJPEGRESOURCE,OnCximageLoadjpegresource) void CDemoApp::
阅读全文
posted @ 2022-10-30 09:12 leochan007
阅读(31)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
下一页
公告