函数定义 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回答

quickzhao

2020-10-22

可以,你按照课程中这个例子试试:

namespace quickzhao

{

int test(int a);

}


0
1
avoidOverfitting
还想请问一下,#include为啥有时候后面用<>,有时候用“”?比如#include和#include"Custom.h"
2020-10-23
共1条回复

avoidOverfitting

提问者

2020-10-23

好的,谢谢回复!
还想请问一下,#include为啥有时候后面用<>,有时候用“”?比如#include<iostream>和#include"Custom.h"

有什么区别么?多谢。

0
2
avoidOverfitting
回复
quickzhao
好的,多谢啦!
2020-10-24
共2条回复

重学C++ ,重构你的C++知识体系

一部大片,一段历史,构建C++知识框架的同时重塑你的编程思维

3884 学习 · 1103 问题

查看课程