2

我是编程初学者。不幸的是,我有一个 C++ 项目,但我不知道它的问题。程序有点长:

#include <iostream.h>
#include <conio.h>
#include <stdio.h>
#include <stdlib.h>
#include <alloc.h>
#include <time.h>
#include <math.h>
#include "vdsim.h"
void gen01dat( long, int);
void cnv_encd(int g[], long,int,int);
int main()
{
long data_len=10;
int *out_array;
long input_len=5;
int g[2][3];

    void gen01dat(data_len,*out_array);

    int in_array=*out_array;
  void cnv_encd(g,input_len,in_array,*out_array);
  cout<<"the out_array 2 is :\t"<<*out_array<<endl;


  void gen01dat( long data_len, int *out_array ) {

     long t;            /* time */

     /* re-seed the random number generator */
     randomize();

     /* generate the random data and write it to the output array */
     for (t = 0; t < data_len; t++)
          *( out_array + t ) = (int)( rand() / (RAND_MAX / 2) > 0.5 );

}

void cnv_encd(int g[2][k],long input_len, int *in_array,int *out_array)
{

     int m;                     /* K - 1 */
     long t, tt;                /* bit time, symbol time */
     int j, k;                  /* loop variables */
     int *unencoded_data;       /* pointer to data array */
     int shift_reg[K];          /* the encoder shift register */
     int sr_head;               /* index to the first elt in the sr */
     int p, q;                  /* the upper and lower xor gate outputs */

     m = K - 1;

     /* read in the data and store it in the array */
     for (t = 0; t < input_len; t++)
          *(unencoded_data + t) = *(in_array + t);

     /* zero-pad the end of the data */
     for (t = 0; t < m; t++) {
          *(unencoded_data + input_len + t) = 0;
     }

     /* Initialize the shift register */
     for (j = 0; j < K; j++) {
          shift_reg[j] = 0;
     }

     sr_head = 0;

     /* initialize the channel symbol output index */
     tt = 0;

     for (t = 0; t < input_len + m; t++) {
          shift_reg[sr_head] = *( unencoded_data + t );
          p = 0;
          q = 0;
          for (j = 0; j < K; j++) {
                k = (j + sr_head) % K;
                p ^= shift_reg[k] & g[0][j];
                q ^= shift_reg[k] & g[1][j];
          }

          /* write the upper and lower xor gate outputs as channel symbols */
          *(out_array + tt) = p;
          tt = tt + 1;
          *(out_array + tt) = q;
          tt = tt + 1;


          sr_head -= 1;    /* equivalent to shifting everything right one place */
          if (sr_head < 0) /* but make sure we adjust pointer modulo K */
                sr_head = m;

     }

     /* free the dynamically allocated array */
     free(unencoded_data);

}

    return 0;
}

编译器给出了这个错误:

error: size of 'gen01'is unknown or zero in function main()
error: size of 'cnv_encd'is unknown or zero in function main()

我不知道这个错误是什么意思?感谢您的帮助

4

3 回答 3

13

您不能在 C++ 中嵌套函数,因此请cnv_encd()尝试gen01dat()main().

另外,您错误地调用了函数:

void gen01dat(data_len,*out_array);

应该

gen01dat(data_len,out_array);

并且您在使用它之前没有初始化out_array(这不是编译错误,但它会使您的程序崩溃)。

你的电话cnv_encd()同样是错误的。您还声明cnv_encd()在不同的地方采用不同的参数:将之前的声明main()与您稍后给出的定义进行比较。

于 2009-07-05T18:30:26.357 回答
3

您正在尝试在 main 中调用 gen01dat 和 cnv_encd 函数。但是,您的调用语法是错误的。

无效 gen01dat(data_len,*out_array);

应该只是

gen01dat(data_len,*out_array);

其他函数调用也是如此。

查看您的代码,即使您修复了这些代码,您也会遇到其他警告或错误。但既然你在学习,我会让你自己弄清楚。

更新:我没有看到 main.js 中的嵌套函数。那也是错的。不过,我怀疑缺少的右括号是一个错字。

于 2009-07-05T18:30:41.350 回答
1

“void”关键字仅在声明函数时使用。它告诉编译器这个函数不返回任何值。

所以你只在声明你的函数和实现它们时使用它。当您调用它们时,您只需使用它的名称和参数。就像 Aditya Sehgal 指出的那样。

你需要改变你的声明。它们必须包含参数变量名称,而不仅仅是变量的类型。

于 2009-07-05T18:33:35.073 回答