int nBTList[40*2];
转换成DELPHI是怎么样的

解决方案 »

  1.   

    应该是  nBTList : array[0..2*40] of Integer 
      

  2.   

    感觉楼上的不太对
    int nBTList[40*2] = nBTList[0..79] of Integer吗? 
      

  3.   

    nBTList[0..79] of Integer  你这个在delphi  我还真没看见过?  至于brolandc++中数组和delphi数组下标一般默认从0开始的吧...........
      

  4.   

    应该是个二维数组,nBTList[0..39,0..1] of integer
      

  5.   

          一维 :nBTList : array[1..2*40] of Integer
         二维:  nBTList : array[1..40,1..40] of Integer  
      

  6.   

    int nBTList[40*2]; 
    这是定义一个有80个元素的整形数组. 一维的. 在Delphi中这样:nBTList: array[0..79] of Integer;
      

  7.   


    nBTList: array[0..79] of Integer;
      

  8.   

    nBTList: array[0..79] of Integer;
      

  9.   

    int nBTList[40*2];  int是整形,后边是一个数据组。
    这是定义一个有80个元素的整形数组. 一维的.
    nBTList: array[0..79] of Integer; 数组从0到79刚好是80个元素。