Lesson 14: Accepting command line arguments


In C++ it is possible to accept command line arguments. Command-line arguments are given after the name of a program in command-line operating systems like DOS or Linux, and are passed in to the program from the operating system. To use command line arguments in your program, you must first understand the full declaration of the main function, which previously has accepted no arguments. In fact, main can actually accept two arguments: one argument is number of command line arguments, and the other argument is a full list of all of the command line arguments. 


The full declaration of main looks like this:
 int main ( int argc, char *argv[] )
The integer, argc is the ARGument Count (hence argc). It is the number of arguments passed into the program from the command line, including the name of the program. 

The array of character pointers is the listing of all the arguments. argv[0] is the name of the program, or an empty string if the name is not available. After that, every element number less than argc is a command line argument. You can use each argv element just like a string, or use argv as a two dimensional array. argv[argc] is a null pointer. 

How could this be used? Almost any program that wants its parameters to be set when it is executed would use this. One common use is to write a function that takes the name of a file and outputs the entire text of it onto the screen.
 #include <fstream>#include <iostream>using namespace std;int main ( int argc, char *argv[] ){  if ( argc != 2 ) // argc should be 2 for correct execution    // We print argv[0] assuming it is the program name    cout<<"usage: "<< argv[0] <<" <filename>\n";  else {    // We assume argv[1] is a filename to open    ifstream the_file ( argv[1] );    // Always check to see if file opening succeeded    if ( !the_file.is_open() )      cout<<"Could not open file\n";    else {      char x;      // the_file.get ( x ) returns false if the end of the file      //  is reached or an error occurs      while ( the_file.get ( x ) )        cout<< x;    }    // the_file is closed implicitly here  }}
This program is fairly simple. It incorporates the full version of main. Then it first checks to ensure the user added the second argument, theoretically a file name. The program then checks to see if the file is valid by trying to open it. This is a standard operation that is effective and easy. If the file is valid, it gets opened in the process. The code is self-explanatory, but is littered with comments, you should have no trouble understanding its operation this far into the tutorial. :-) 

Previous: Functions Continued
Next: Linked Lists 
Tutorial index

'프로그래밍 > C, C++' 카테고리의 다른 글

레슨 16: Recursion  (0) 2011.06.07
레슨 15: Singly linked lists  (0) 2011.06.07
레슨 13: More on Functions  (0) 2011.06.07
레슨 12: Introduction to Classes  (0) 2011.06.07
레슨 11: Typecasting  (0) 2011.06.07

+ Recent posts