VsCode跨文件调用函数(undefined reference to)

文章目录

如何跨文件调用

  1. 假设我们的文件目录如下:
=cpp
==code_exe
===NamespaceUsage.cpp
==execute
===NamespaceUsage2.cpp
==include
===test.h
  1. 其中,test.h为命名空间的声明,其代码如下:
#ifndef _TEST_
#define _TEST_

// 声明一个命名空间
namespace MySpace
{
    // 声明函数
    void func1();
    void func2(int);
}

#endif
  1. NamespaceUsage2.cpp为源文件,是对MySpace的定义,其代码如下:
#include <iostream>
#include "..\include\test.h" //调用自己声明的头文件

using namespace std;

void MySpace::func1()
{
    cout << "MySpace::func1()" << endl;
}

void MySpace::func2(int x)
{
    cout << "MySpace::func2()" << x << endl;
}

其中,#include "..\include\test.h"是test.h相对于NamespaceUsage2.cpp的位置,..\表示返回上一目录级。#include "..\include\test.h"中也可以写成test.h的绝对地址。

  1. NamespaceUsage.cpp为执行代码,代码如下:
#include <iostream>
#include "..\include\test.h"              //调用自己声明的头文件
#include "..\execute\NamespaceUsage2.cpp" //调用所设置的源文件

using namespace std; // 使用std命名空间

int main()
{
    /*命名空间的声明和分开实现*/
    MySpace::func1();
    MySpace::func2(3);

    return 0;
}

需要同时调用声明的头文件test.h和定义的源文件NamespaceUsage2.cpp

  1. 运行结果如下:
    在这里插入图片描述
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值