MFC _tcsdup怎么用,什么含义
答案:2 悬赏:10 手机版
解决时间 2021-03-04 12:33
- 提问者网友:美人性情
- 2021-03-03 18:30
MFC _tcsdup怎么用,什么含义
最佳答案
- 五星知识达人网友:woshuo
- 2021-03-03 19:16
一、说明:
指定应用程序的名字。应用程序可以从传递给CWinApp的构造函数的参数中得到,如果其中没有指定名字,则是ID为AFX_IDS_APP_TITLE的资源字符串。如果在资源中找不到应用程序的名字,那么它来自程序的可执行文件名。全局函数AfxGetAppName返回该值。m_pszAppName是const char* 类型的公有变量。
二、分配目的串内存空间,然后将源字符串的内容copy到目的串中。The _strdup function calls malloc to allocate storage space for a copy of strSource and then copies strSource to the allocated space.
指定应用程序的名字。应用程序可以从传递给CWinApp的构造函数的参数中得到,如果其中没有指定名字,则是ID为AFX_IDS_APP_TITLE的资源字符串。如果在资源中找不到应用程序的名字,那么它来自程序的可执行文件名。全局函数AfxGetAppName返回该值。m_pszAppName是const char* 类型的公有变量。
二、分配目的串内存空间,然后将源字符串的内容copy到目的串中。The _strdup function calls malloc to allocate storage space for a copy of strSource and then copies strSource to the allocated space.
全部回答
- 1楼网友:想偏头吻你
- 2021-03-03 20:49
拷贝字符串
#include
#include
#include
int main( void )
{
TCHAR buffer[] = _T("This is the buffer text");
TCHAR *newstring;
_tprintf( _T("Original: %s\n"), buffer );
newstring = _tcsdup( buffer );
_tprintf( _T("Copy: %s\n"), newstring );
free( newstring );
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯