函数定义 namespace
来源:7-14 命名空间。
avoidOverfitting
2020-10-22
在 custom.h 中声明test():
namespace CustomNamespace {
int test(int);
}
在custom.cpp 中定义test():
CustomNamespace::test(int a) {
return a;
}
可以这样写吗?如果可以这样,那么在custom.cpp里需要#include "custom.h"吗?
谢谢!
写回答
2回答
-
可以,你按照课程中这个例子试试:
namespace quickzhao
{
int test(int a);
}
012020-10-23 -
avoidOverfitting
提问者
2020-10-23
好的,谢谢回复! 还想请问一下,#include为啥有时候后面用<>,有时候用“”?比如#include<iostream>和#include"Custom.h"
有什么区别么?多谢。
022020-10-24
相似问题