采纳答案成功!
向帮助你的同学说点啥吧!感谢那些助人为乐的人
在 custom.h 中声明test(): namespace CustomNamespace { int test(int); } 在custom.cpp 中定义test(): CustomNamespace::test(int a) { return a; } 可以这样写吗?如果可以这样,那么在custom.cpp里需要#include "custom.h"吗? 谢谢!
可以,你按照课程中这个例子试试:
namespace quickzhao
{
int test(int a);
}
还想请问一下,#include为啥有时候后面用<>,有时候用“”?比如#include<iostream>和#include"Custom.h"
好的,谢谢回复! 还想请问一下,#include为啥有时候后面用<>,有时候用“”?比如#include<iostream>和#include"Custom.h"
有什么区别么?多谢。
<>一般是修饰库文件;""一般修饰本地文件。
好的,多谢啦!
登录后可查看更多问答,登录/注册
一部大片,一段历史,构建C++知识框架的同时重塑你的编程思维
1.2k 12
1.3k 10
1.2k 9
1.0k 9