当前位置: 主页 > 日志 > C/C++ >

如何在Win32 Console Application (Win32控制台)程序中使用MFC

(1)包含afx.h文件。#include <afx.h>

(2)Project(工程)->Setting(设置)->General(常规)->将"no   using   MFC",改为另外2项中的任一项  。



(3)Project(工程)->Setting(设置)->C/C++   ->Category(分类),选择“Code   Generation”, Use  run-time   library   选择“Debug   Multithreaded ”。



最后给出一段测试代码(MFC中链表结构CStringList的使用):


#include <afx.h>

int main()
{
   CStringList myslist;
   for(int i=0;i<51;i++) // 添加列表
   {
       CString csTemp;
       csTemp.Format("%d",i);
       myslist.AddTail(csTemp);
   }

   //遍历列表
   POSITION pos;
   pos=myslist.GetHeadPosition();

   for(;pos != NULL;)
   {
       printf("%s ",myslist.GetNext(pos));
   }
   return 0;
}

[日志信息]

该日志于 2009-03-16 17:45 由 redice 发表在 redice's Blog ,你除了可以发表评论外,还可以转载 “如何在Win32 Console Application (Win32控制台)程序中使用MFC” 日志到你的网站或博客,但是请保留源地址及作者信息,谢谢!!    (尊重他人劳动,你我共同努力)
   
验证(必填):   点击我更换验证码

redice's Blog  is powered by DedeCms |  Theme by Monkeii.Lee |  网站地图 |  本服务器由西安鲲之鹏网络信息技术有限公司友情提供

返回顶部