mfc 多个字符串怎么存储到数组,应该怎么定义??
2个回答
展开全部
//解答如下
void CTestDlg::OnButton1()
{
// TODO: Add your control notification handler code here
MessageBox("hello world");
char str[][20]={"ab","cd","ef"};
MessageBox(str[0]);
MessageBox(str[1]);
MessageBox(str[2]);
}
void CTestDlg::OnButton1()
{
// TODO: Add your control notification handler code here
MessageBox("hello world");
char str[][20]={"ab","cd","ef"};
MessageBox(str[0]);
MessageBox(str[1]);
MessageBox(str[2]);
}
追问
如果是用CString 呢。..CString[10]这个数组能存放多个字符串吗?
追答
这个貌似可以,我没有安装VC,用的是codeblocks没法测试。不过java里面都有string的数据类型,就是用来存储字符串的,定义成你那样当然就可以存储多个字符串了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询