0

私は、オーディオ、SPL などに関していくつかの方程式を実行するプログラムに取り組んできました。

私は、方程式が別のクラス ファイルに格納されている間に、ユーザーがどの方程式を実行したいかを選択するオプションをユーザーに提示するメイン クラス ファイルを用意することにしました。

Atm、メイン クラス ファイルは maxPeakSPL() をテストするためだけにセットアップされていますが、実行できません。

main.cpp

//Kh[a]os
#include "equations.h"
#include <iostream>

void mainLoop();

int maxSPL = 0;

int main()
{
std::cout << "Created by Kh[a]os" << std::endl << std::endl;
mainLoop();

return 0;
}

void mainLoop()
{

std::cout << "hi";
maxSPL = equations::maxPeakSPL();
std::cout << std::endl << maxSPL << "db" << std::endl << std::endl;


    }

方程式.h

#ifndef EQUATIONS_H
#define EQUATIONS_H

#include <string>


class equations
{
    public:
        equations();
        static int maxPeakSPL();
    protected:
    private:
};

#endif // EQUATIONS_H

方程式.cpp

#include "equations.h"
#include <iostream>
#include <string>

equations::equations()
{

}

static int maxPeakSPL()
{

    int Sens = 0;
    double Distance = 0;
    int Watts = 0;
    int sWatts = 2;
    int eWatts = 0;
    double maxSPL = 0;
    double counter = 0;
    double wall = 0;
    std::string corner = "";

bool v = true;

    std::cout << "Sensitivity (db): " << std::endl;
    std::cin >> Sens;
    std::cout << "Amplification (watts): " << std::endl;
    std::cin >> Watts;
    std::cout << "Listening Distance (meters): " << std::endl;
    std::cin >> Distance;
    std::cout << "Distance from Wall (ft): " << std::endl;
    std::cin >> wall;
    std::cout << "Are you they in a corner? (y/n): " << std::endl;
    std::cin >> corner;


    maxSPL = Sens - (Distance*3 - 3);


while(v == true)
{
if (sWatts > Watts)
        {
            v = false;
            eWatts = sWatts;
            sWatts = sWatts/2;
            Watts = Watts-sWatts;
            counter = (double)Watts/(double)eWatts;
            counter = counter*3;
            maxSPL = maxSPL + counter;

        }

     if (v == true)
     {
        maxSPL = maxSPL + 3;
        sWatts = sWatts*2;
     }

    }
    if (wall <= 4)
    maxSPL = maxSPL + 3;

    if (corner == "Y" || corner == "YES" || corner == "y" || corner == "yes")
    maxSPL = maxSPL + 3;

    return maxSPL;

}

実行時に発生するエラーは次のとおりです。 `equations::maxPeakSPL()' への未定義参照

これを修正する方法がわかりません。どんな支援も素晴らしいでしょう。ありがとうございました。

4

1 に答える 1

0

メインでは、メイン ブロックの前に関数を配置してみてください。ディレクティブ/フラグの名前の前にアンダースコアを含めます。

于 2012-04-21T22:59:51.017 に答える