VC中解决数组长度不能使用变量的方法

      通常我们定义数组的长度时,这个长度是一个整数常量,但有时我们需要定义整数变量,这种情况下编译时会出现如下的错误提示:

error C2057: 应输入常数表达式; error C2466: 不能分配常数大小为 0 的数组。

      解决的办法有如下两种方法:

1、 使用宏#define来定义数组的长度;

2、 使用new关键字来构造数组。

      本例的关键代码如下:

void CSample1View::OnDraw(CDC* pDC)

{

       CSample1Doc* pDoc = GetDocument();

       ASSERT_VALID(pDoc);

       if (!pDoc)

              return;

       #define count 3

       CString testStr[count];

       testStr[0]="Test1";

       testStr[1]="Test2";

       testStr[2]="Test3";

       for(int i=0;i<count;i++)

              pDC->TextOut(0,i*20,testStr[i]);

}

void CSample2View::OnDraw(CDC* pDC)

{

       CSample2Doc* pDoc = GetDocument();

       ASSERT_VALID(pDoc);

       if (!pDoc)

              return;

       int count=3;

       CString* pTestStr=new CString[count];

       pTestStr[0]="Test1";

       pTestStr[1]="Test2";

       pTestStr[2]="Test3";

       for(int i=0;i<count;i++)

              pDC->TextOut(0,i*20,pTestStr[i]);

}

上一篇:用接口实现事件的一种方法,只是玩玩。


下一篇:C# 中String 和 StringBuilder的区别