- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的 C++ 程序在从 VoIP 数据包中提取音频时遇到问题。
它在 Linux 和 OpenBSD 上的 amd64 和 x86 上运行良好,但是当我在 ARM 上的 OpenBSD 上运行程序时,它确实有神奇的作用。
我在 LoadConfigFile 中调用 return true,在 ProcessConfiguration 中返回结果为 false。
谁能帮帮我?也许我真的只是瞎子。我用代码做了很多测试打印。
这是调用函数 ProcessConfiguration 的程序的主要功能。
int main ( int argc, char **argv ) {
if ( ! config.ProcessConfiguration( argc, argv ) ) {
std::cout << "process configuration failed" << std::endl;
std::cout << "exiting whole program with EXIT_FAILURE" << std::endl;
return EXIT_FAILURE;
}
std::cout << "process configuration is true" << std::endl;
// User want to only print configuration
if ( config.m_printconfig == true ) {
config.PrintConfig();
return EXIT_SUCCESS;
}
.
. // Long uninteresting code
.
return EXIT_SUCCESS;
}
这是调用 LoadConfigFile 的函数 ProcessConfoguration。
bool TConfig::ProcessConfiguration ( int & argc, char ** & argv ) {
// Scan options from command line
int c;
while (( c = getopt ( argc, argv, "c:dhn" )) != EOF ) {
switch (c) {
case 'c':
m_configfile = optarg;
break;
case 'd':
m_daemon = false;
break;
case 'h':
m_printusage = true;
return true;
case 'n':
m_printconfig = true;
break;
default:
return false;
}
}
argc -= optind;
argv += optind;
if ( LoadConfigFile() == false ) {
std::cout << "LoadConfigFile was false" << std::endl;
return false;
}
std::cout << "LoadConfigFile was true" << std::endl;
return true;
}
并且此函数加载配置文件并解析所有指令。
bool TConfig::LoadConfigFile ( void ) {
std::string line;
std::string directive;
std::ifstream data;
if ( m_configfile.empty() ) {
m_configfile = DEFAULT_CONFIGFILE;
}
std::cout << "opening file " << m_configfile << std::endl;
data.open( m_configfile.c_str() );
if ( ! data.is_open() ) {
std::cerr << "Couldn't open config " << m_configfile << std::endl;
return false;
}
std::cout << "configfile is open" << std::endl;
std::cout << "before getline" << std::endl;
while ( getline( data, line ) ) {
std::cout << "after getline" << std::endl;
trim_whitespaces( line );
.
. // Long uninteresting code
.
}
std::cout << "before data.close" << std::endl;
data.close();
std::cout << "before return true in LoadConfigFile" << std::endl;
return true;
}
这是在终端上的输出。
$ ./call-extract -c call-extract.conf -d -n
opening file call-extract.conf
configfile is open
before getline
before data.close
before return true in LoadConfigFile
LoadConfigFile was false
process configuration failed
exiting whole program with EXIT_FAILURE
$ echo $?
1
$
我在 LoadConfigFile 中调用 return true,在 ProcessConfiguration 中返回结果为 false。
最佳答案
返回的是真。
我的输出:
before return true in LoadConfigFile
LoadConfigFile was true
没有无趣部分的代码:
struct TConfig
{
bool ProcessConfiguration()
{
bool rv = true;
if( !LoadConfigFile() ) { rv = false; }
printf("LoadConfigFile was %s\n", rv?"true":"false" );
return rv;
}
bool LoadConfigFile ( void )
{
printf("before return true in LoadConfigFile\n");
return true;
}
};
void fv()
{
TConfig config; config.ProcessConfiguration();
}
关于c++ - 返回真还是返回假?魔法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30272858/
我注意到一些 PHP 框架只使用小写字母 true/false 而其他框架则使用大写字母。 这有什么区别吗?我个人更喜欢小写字母。 最佳答案 没什么区别,有些人认为 FALSE 是常量,因此使用旧的尖
在我看来,以下两种映射方式实际上没有区别。以下是基于 @MapsId javadoc 的示例: // parent entity has simple primary key @Entity publ
我想知道是否有人知道编译器如何解释以下代码: #include using namespace std; int main() { cout << (true && true || false &
我想知道为什么alert(new Boolean(false))打印 false 而不是打印对象,因为 new Boolean 应该返回对象。如果我使用 console.log(new Boolean
即使在 verify=False 时,Python 请求也会给我一个 ssl 握手失败(我知道不使用 SSL 是不可取的)。对于其他具有有效证书的站点,请求按预期工作。我正在使用2.7。 from l
TDPL 描述了 assert(false); 语句的行为。此类断言不会从发布版本中删除(与所有其他断言一样),并且实际上会立即停止程序。问题是为什么?为什么会有如此令人困惑的行为?他们可能会添加 h
如何确定文档是否存在于 Meteor 的集合中? 编辑:新代码。 mongodb 有一个 ProductName 的文档:Apples 输入产品是“苹果” var exists = Products.
我想在 R 中做一些相当复杂的事情,但我不确定从哪里开始。 我有一个看起来像这样的数据框: main_val sub_val bit_one bit_two one a 1
我正在尝试编写一个函数 long(S1,S2) 如果 S1 比 S2 长,则该函数应该为真,否则为假。到目前为止,我所拥有的是以下内容: longer(A,nil). longer(nil,B) :-
我想知道我在这里缺少什么我有一个代码可以检查图像是否基于 Canvas 是透明的。 function Trasparent(url, npc, clb) { var img = new Ima
我想在按下按钮时使其他类框架设置可见(false)。 有一个名为 DisplayScore 的类,该类获取 getContentPane().add(new ScoreInfo());来自 Score
我正在使用 TableLayout 和 TableRow 创建 6/6 网格按钮。 private Button myButton; private static final int
这个问题没有实际用途!我之所以问这个只是因为我很好奇! 在C++中,有一种方法可以通过在某处编写#define true false来将true伪造为false,然后在代码中到处的true都将被视为f
我不久前学习 java,所以也许我有一个愚蠢的问题。 我有一张表,我在其中存储了一些信息。我想在此表中检查一些信息的可用性(这将只有一行),如果是 - 从这一行中获取特定列中的信息,如果没有 - 做另
这是一个 JavaScript 问题... 我正在尝试返回完全不区分大小写的匹配项。例如,如果我在输入框中输入 "yo",我希望它返回 true,这在我当前的方法中是这样做的,但它也会返回 true
我认为,我在 JS 中写了一个直接的 if 语句,但它运行不正确。 function printLetter(LetterId) { var studentflag = $("#IsStude
我如何使用 Javascript 执行以下操作? var object function() { return { object: Return true if object
我试图让导航栏在向上滚动时向下滑动,并在单击#menu-bar 时保持固定。但是当我再次单击同一个按钮时,我不知道如何在自动隐藏时将值改回 false,就在我有两个按钮的时候。非常感谢任何帮助! $(
下面的代码 #include using namespace std; int main(){ char greeting[50] = "goodmorning everyone";
我正在使用数据源将数据填充到我的数据 GridView 中。但是,我正在尝试找到一种方法让用户能够隐藏他不想看到的列。 我可以在程序运行之前隐藏和显示列: [Browsable(false)] pub
我是一名优秀的程序员,十分优秀!