本文介绍了如何连接多个CString的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所有函数都返回CString,这是一个MFC代码,必须在32& 64位。

All functions return CString, this is a MFC code and must compile in 32 & 64 bits.

目前正在使用

CString sURI = GetURL();
sURI += GetMethod();
sURI += "?";
sURI += GetParameters();


存在任何方式做同样的事情:

Exists any manner to do the same like:

CString sURI = GetURL() + GetMethod() + "?" + GetParameters();



推荐答案

?的类型const char *是,它的+运算符不使用类型CString的右手操作数。你必须转换?到CString类似这样:

Problem is that "?" of type "const char*" is, and its + operator does not take right hand operand of type CString. You have to convert "?" to CString like this:

CString sURI = GetURL() + GetMethod() + _T("?") + GetParameters();

这篇关于如何连接多个CString的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 20:46