VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 788|回复: 3

LPCTSTR,LPTSTR的具体含义是什么,他们之间有什么不同??

[复制链接]

1

主题

1

帖子

2.00

积分

新手上路

Rank: 1

积分
2.00
发表于 2020-9-28 17:30:01 | 显示全部楼层 |阅读模式
如题!
回复

使用道具 举报

0

主题

45

帖子

32.00

积分

新手上路

Rank: 1

积分
32.00
发表于 2020-9-29 12:00:01 | 显示全部楼层
LZ会发现中间多了一个C
那是const ^_^
回复

使用道具 举报

0

主题

45

帖子

32.00

积分

新手上路

Rank: 1

积分
32.00
发表于 2020-9-29 12:15:01 | 显示全部楼层
也就是前面是常指针,后面一个不是
回复

使用道具 举报

0

主题

3

帖子

3.00

积分

新手上路

Rank: 1

积分
3.00
发表于 2020-9-29 13:45:01 | 显示全部楼层
LPCTSTR:  An LPCWSTR if UNICODE is defined, an LPCSTR otherwise.

This type is declared in WinNT.h as follows:


#ifdef UNICODE
typedef LPCWSTR LPCTSTR;
#else
typedef LPCSTR LPCTSTR;
#endif

LPTSTR:  An LPWSTR if UNICODE is defined, an LPSTR otherwise.
This type is declared in WinNT.h as follows:


#ifdef UNICODE
typedef LPWSTR LPTSTR;
#else
typedef LPSTR LPTSTR;
#endif

LPCSTR: Pointer to a constant null-terminated string of 8-bit Windows (ANSI) characters.

LPSTR:  Pointer to a null-terminated string of 8-bit Windows (ANSI) characters.
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表