Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否建议使用 strcmp 或 _tcscmp 比较 Unicode 版本中的字符串?
_tcscmp()是一个宏。如果你定义UNICODE它将使用wcscmp(),否则它将使用strcmp()。
_tcscmp()
UNICODE
wcscmp()
strcmp()
注意 types TCHAR,PTSTR等是相似的。如果您定义,则它们将是WCHARand ,否则。PWSTRUNICODECHARPSTR
TCHAR
PTSTR
WCHAR
PWSTR
CHAR
PSTR
不,你应该使用 _ tcscmp。这将根据您的编译器标志解析为正确的功能。
tcscmp