IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> MFC调试程序OutputDebugString改写 -> 正文阅读

[C++知识库]MFC调试程序OutputDebugString改写

MFC调试程序OutputDebugString改写

说明

本人原先是使用Qt做C++开发的,但是由于最近相关的工作比较难找,所以找的工作是做MFC的相关开发的,但是MFC中的一些调试程序实在是难用,所以按照Qt对应的程序做了一定的修改操作,参照的程序为Qt的QDebug,使用输出符号进行数据的输出。

源码

//CDebug.h
#pragma once
#include <string>
#include <cstring>
constexpr auto Cendl = "\r\n";
using namespace std;
class CDebug  
{
public:CDebug();
	   //此处只能定义成友元函数,重载友元函数,增强其参数兼容性
	   CDebug & operator<<(const string &str);     //兼容string,char*
	   CDebug & operator<<(const CString &str);   //兼容CString
	   CDebug & operator<<(const int &number);     //兼容int
	   CDebug & operator<<(const unsigned int &number);     //兼容 unsigned int
	   CDebug & operator<<(const long &number);     //兼容 long int
	   CDebug & operator<<(const long long &number);     //兼容 long long int
	   CDebug & operator<<(const float &number);     //兼容float
	   CDebug & operator<<(const double &number);     //兼容double
	   CDebug & operator<<(const long double &number);     //兼容double
	   CDebug & operator<<(const char &number);     //兼容char,一个字符,以字符形式输出   
};
//CDebug.cpp
#include "pch.h"
#include "CDebug.h"

CDebug::CDebug()
{
	//不需要初始化任何的参数信息
}
CDebug & CDebug::operator<<(const string & str)
{
	// TODO: 在此处插入 return 语句
	OutputDebugString(CString(str.c_str()));   //转换为CString,方便使用OutputDebugString输出
	return *this; //返回Debug,为后续接上<<做准备
}

CDebug & CDebug::operator<<(const CString & str)
{
	// TODO: 在此处插入 return 语句
	OutputDebugString(str);
	return *this;
}

CDebug & CDebug::operator<<(const int & number)
{
	// TODO: 在此处插入 return 语句
	CString str;
	str.Format(_T("%d"), number);
	OutputDebugString(str);
	return *this;
}

CDebug & CDebug::operator<<(const unsigned int & number)
{
	// TODO: 在此处插入 return 语句
	CString str;
	str.Format(_T("%u"), number);
	OutputDebugString(str);
	return *this;
}

CDebug & CDebug::operator<<(const long & number)
{
	// TODO: 在此处插入 return 语句
	CString str;
	str.Format(_T("%ld"), number);
	OutputDebugString(str);
	return *this;
}

CDebug & CDebug::operator<<(const long long & number)
{
	// TODO: 在此处插入 return 语句
	CString str;
	str.Format(_T("%lld"), number);
	OutputDebugString(str);
	return *this;
}

CDebug & CDebug::operator<<(const float & number)
{
	// TODO: 在此处插入 return 语句
	CString str;
	str.Format(_T("%f"), number);
	OutputDebugString(str);
	return *this;
}

CDebug & operator<<(CDebug & debug, const double & number)
{
	// TODO: 在此处插入 return 语句
	CString str;
	str.Format(_T("%lf"), number);
	OutputDebugString(str);
	return debug;
}

CDebug & CDebug::operator<<(const long double & number)
{
	// TODO: 在此处插入 return 语句
	CString str;
	str.Format(_T("%lf"), number);
	OutputDebugString(str);
	return *this;
}

CDebug & CDebug::operator<<( const char & number)
{
	// TODO: 在此处插入 return 语句
	CString str;
	str.Format(_T("%c"), number);
	OutputDebugString(str);
	return *this;
}

修改说明

该部分程序仅实现类似于QDebug的功能,目前只支持一些常用的数据格式实现数据输入和输出,一些自定义格式还需要自行添加友元函数或者重写。

  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-03 15:50:34  更:2022-03-03 15:56:21 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 4:19:10-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码