c – tstring typedef问题

c – tstring typedef问题,第1张

概述我有一个问题,试图自己键入一个非常方便的tstring(见下文) #ifndef _NISAMPLECLIENT_H_#define _NISAMPLECLIENT_H_#include <windows.h>#include <stdlib.h>using namespace std; // ERROR here (1)#ifdef _UNICODE#define Command 我有一个问题,试图自己键入一个非常方便的tstring(见下文)

#ifndef _NISAMPLECLIENT_H_#define _NISAMPLECLIENT_H_#include <windows.h>#include <stdlib.h>using namespace std; // ERROR here (1)#ifdef _UNICODE#define CommandlinetoArgv CommandlinetoArgvW#else#define CommandlinetoArgv CommandlinetoArgvA#endiftypedef basic_string<TCHAR> tstring; // ERROR HERE (2)

尝试编译时出现编译器错误. “ERROR here(1)”中的错误是:

Error 3 error C2871: ‘std’ : a namespace with this name does not exist \nisampleclIEnt\nisampleclIEntdefs.h 16

如果我删除using namespace std;声明并将ERROR HERE(2)更改为typedef std :: basic_string< TCHAR> tstring;然后我收到一个错误:

Error 3 error C2653: ‘std’ : is not a class or namespace name \nisampleclIEnt\nisampleclIEntdefs.h 23

在那一点上.

提前致谢. 总结

以上是内存溢出为你收集整理的c – tstring typedef问题全部内容,希望文章能够帮你解决c – tstring typedef问题所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1219142.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存