0

所以我有3个文件;main.c , 文件.c 文件.h

在 file.h 我声明了 3 个变量

extern  clock_t start_t, end_t, total_t;

在file.c中我写了一个函数来保存主运行程序的时间长度;在 file.h 中,我将其称为“void saveLog(void);”

void saveLog(void)
{   
end_t = clock();
total_t = (end_t - start_t);
double time_spent = (double) total_t / CLOCKS_PER_SEC;

double *arr = malloc(sizeof(double));
*arr = time_spent;

FILE* fp = fopen("log.txt","wb");
if (fp)
{
    printf("Elapsed: %f seconds\n", (double) time_spent);
    fwrite(arr, 1, sizeof(double), fp);
    fclose(fp);
}
}

在 main 开头的 main.c 中,我写了 start_t = clock(); 最后写道atexit(savelog) ,我包含了所有库(所有文件中的 time.h 、 stdlib.h 、 stdio.h )

编译时出现错误 apple linker id error

Undefined symbols for architecture x86_64:
  "_end_t", referenced from:
      _saveLog in file.o
  "_start_t", referenced from:
      _check_answer in main.o
      _saveLog in file.o
  "_total_t", referenced from:
      _saveLog in file.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

顺便说一句,我的想法是,开始计算时钟和 main 的开始,并简单地在函数中进行数学运算。我的问题是,为什么它不起作用?我还应该如何使用clock_t变量?我尝试使用 int 进行一些测试,并且似乎可以很好地引用。

4

1 回答 1

0

我发现我错过了什么;我忘记在包含的文件中定义变量main()(尽管任何其他源文件都可以定义它们,只要只有一个文件定义它们并且在链接程序时链接该文件的目标代码)。

于 2016-12-16T20:16:04.637 回答