0

我有两个文件

 books.cpp and books.h

我在我的主要功能中使用这些类。我在 main.cpp 文件中也有一个函数func 。

#include iostream
#include "books.h"
void func(int a, int b);
int main(){
    books book;
    func(5,6);
    return 0;
}

void func(int a, int b){
   //can i use the book object declared in main in this function?
}

我想要在函数的 main 中声明的 books 类对象 book 我如何访问它?谁能帮帮我?

4

1 回答 1

3

不是直接的。您必须将其传递给您的函数或使其全局化。

void func(int a, int b, books book)
{
    // use me
}
于 2013-09-28T11:04:38.780 回答