Xcode找不到PortAudio的标签“错误”

时间:2019-03-29 00:02:26

标签: c++ xcode portaudio

我正在尝试按照Initialising PortAudio tutorial中所述初始化portaudio。

它说要像这样检查初始化期间是否有错误:

PaError err = Pa_Initialize();
if (err != paNoError) goto error;

这是我正在使用的确切代码。

我正在OS X Mojave 10.14.4上运行此程序,并使用Xcode 10.1和10.12 OS X SDK。

我试图找到PortAudio文档中的错误标签无效,并且名为error的文件中没有变量。

到目前为止,完整的程序是:

# include <iostream>
# include "portaudio.h"
using namespace std;

// Typedef and demo callbacks here.

int main(int argc, const char * argv[])
{
    PaError err = Pa_Initialize();

    if (err != paNoError) goto error;

    // Nothing here yet.

    err = Pa_Terminate();

    if (err != paNoError)
    {
        printf("Port audio error terminating: %s", Pa_GetErrorText(err));
    }
    return 0;
}

据我在本教程中所讲,这应该是一个有效的语句,但是Xcode显示语法错误: Use of undeclared label 'error'

1 个答案:

答案 0 :(得分:0)

检查c++ reference for goto statements an example program for PortAudio时出现的问题是假设goto可以访问portaudio.h文件中定义的内容,情况并非如此。

如果您遇到此问题,我想您也不熟悉goto语句。

本教程假定主要功能的一部分专门用于解决错误。为了解决此问题,我们需要在main函数中定义一个错误标签,该标签负责响应错误。

例如:

int main(void) {
    PaError err;

    // Checking for errors like in the question code, including goto statement.

    return 1; // If everything above this goes well, we return success.

error:               // Tells the program where to go in the goto statement.
    Pa_Terminate();  // Stop port audio. Important!
    fprintf( stderr, "We got an error: %s/n", Pa_GetErrorMessage(err));
    return err;    
}