头文件的使用使函数调用免于声明-OPP2010之C++课件
                    头文件的使用:使函数调用免于声明// abc.h void f1 ( ); void f2 ( ); void f3 ( ); void g1 ( ); void g2 ( ); void p ( ); void h ( ); // a1.cpp #include”abc.h” void f1() { if(…){ p(); g1(); else{ g2(); h(); } } // a2.cpp #include”abc.h” int main(){ f1(); f2(); f3(); }//---- void f3(){ f1(); }//---- void p(){ f3(); }//----                
            
                                        
                                    文件大小:1.21MB
                                
                                
                                
                            
评论区