したがって、私はオブジェクトのメソッドにいますが、cout ステートメントはまったく出力を生成しません。
#include <iostream>
#include <stdio.h>
Object::Method()
{
printf("why is the next line not printing? This one prints fine\n");
std::cout << "This line should print second, but doesnt" << std::endl;
printf("but this line prints fine like the first!\n");
}
出力は次のとおりです。
次の行が印刷されないのはなぜですか? これはきれいに印刷されます
しかし、この行は最初のようにうまく印刷されます!
なぜ印刷されないのかわかりません。std::flush
も効果がありません。