其他分享
首页 > 其他分享> > include

include

作者:互联网

include

包含一个 .cpp 文件

testA.cpp

int getMax(int a,int b){
    return a>b?a:b;
}

testB.cpp

#include "testA.cpp"	//包含一个cpp文件

int main() {
    int max = getMax(1, 2);
}

包含一个 .h 文件

testA.cpp

int getMax(int a,int b){
    return a>b?a:b;
}

testA.h

int getMax(int a,int b);

testB.cpp

#include "testA.h"	//包含一个cpp文件

int main() {
    int max = getMax(1, 2);
}

#include “fileName” 与 #include <fileName>

#include “fileName”

#include <fileName>

标签:文件,int,testA,getMax,cpp,include
来源: https://blog.csdn.net/weixin_45716510/article/details/114058343