私は2つのファイルを持っています
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 で宣言された book クラス オブジェクト book が必要です。どうすればそれにアクセスできますか? 誰でも私を助けてくれますか?