#include <iostream>
#include <fstream>
int main(int argc, char **argv)
{
std::ifstream f;
if (argc >= 2) {
f.open(argv[1]);
}
std::istream &in = (argc >= 2) ? f : std::cin;
// use in here
}
Вы можете перенести часть этой работы в вспомогательный класс, чтобы прояснить, что происходит (обратите внимание, что это немного отличается в случае, когда файл не может быть открыт):
#include <iostream>
#include <fstream>
class ifstream_or_cin_t {
std::ifstream f;
public:
ifstream_or_cin_t(const char *filename)
{
if (filename) {
f.open(filename);
}
}
operator std::istream &() { return f.is_open() ? f : std::cin; }
};
static void do_input(std::istream &in)
{
// use in...
}
int main(int argc, char **argv)
{
do_input(
ifstream_or_cin_t((argc >= 2) ? argv[1] : NULL));
}