新cpp文件中的方法?

时间:2015-11-10 07:26:31

标签: c++ methods header

我正在制作一个控制台应用程序,显示循环时继续和中断之间的区别。我正在使用Visual Studio 6.0的c ++。我添加了一个新项目,在NewProject.cpp中我把它放在一起:

// NewProject.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>

using namespace std;

void ContinueLoop(){

    for(int k = 1; k<5; k++){
        cout<<"This line shows once per loop cycle\n";
        continue;
        cout<<"Does this line show?\n";
    }

}

void BreakLoop(){

    for(int i = 1; i<5; i++){
        cout<<"This line shows once per loop cycle\n";
        break;
        cout<<"Does this line show?\n";
    }

}


int main(int argc, char* argv[])
{
    cout<<"This is the continue loop\n\n";
    ContinueLoop();
    cout<<"\nThis is the break loop\n\n";
    BreakLoop();

    return 0;
}

现在我的问题是:如何将ContinueLoop和BreakLoop移动到我可以调用的其他cpp文件中。我对c ++很新,有一个cpp文件和头文件的想法对我来说是新的(在高中的delphi 7中学习了一些编码)。

我环顾四周,但我似乎无法在这个网站上找到我正在寻找的内容,而且大多数相关答案都过于具体,无法解释。给我一个清理如何做到这一点的解释。

0 个答案:

没有答案