本文介绍了全局数组的Visual Studio C ++监视列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

全局数组无法在简单的表单项目中正确显示.我可以将局部变量设置为等于全局数组的元素,并且值是正确的.标量变量正确显示.

有任何想法吗?我正在使用Visual Studio2010.

Global arrays do not display properly in a simple forms project. I can set local variables equal to elements of the global array and the values are correct. Scalar variables display properly.

Any ideas? I am using Visual Studio 2010.

//GlobalTest.cpp : main project file.

#include "stdafx.h"
#include "Form1.h"

using namespace GlobalTest;

double XX[7] = { 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0};
double ZZ = 3;

[STAThreadAttribute]
int main(array<System::String ^> ^args)
{

    double YY[7];

    for(int i=0; i<7; i++)
    {
        YY[i] = XX[i];
    }

    // Enabling Windows XP visual effects before any controls are created
    Application::EnableVisualStyles();
    Application::SetCompatibleTextRenderingDefault(false);

    // Create the main window and run it
    Application::Run(gcnew Form1());
    return 0;
}

推荐答案


这篇关于全局数组的Visual Studio C ++监视列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-08 06:03