devxlogo

Simplifying Switch Options

Simplifying Switch Options

C/C++ programmers are used to parsing command line arguments using the “int argc” and “char *argv[]” parameters to the main() function. Java programmers can use a similar syntax to greatly simplify the processing of optional switches:

 public class DemoSwitch {	// Optional switch - default is false	private boolean switch = false;	// Execution starts here	static public void main(String args[]) {		int argc = args.length;		// Number of command line parameters		int argv = 0;			// Index to first one		String parameter;		// Expected parameter			// Turn optional switch on if present in the command line    		if (argc > 0 && (switch = args[argv].startsWith("-s"))) {			// Skip for further processing			--argc;			++argv;		}    			// Continue processing command line parameters		if (argc > 0) {			parameter = args[argv];		} else {			System.err.println("Usage: java DemoSwitch [-s] ");			return;		}	        // place useful code here...    	}}
See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist