FileDocCategorySizeDatePackage
SwitchByte.javaAPI DocExample193Mon Oct 30 12:56:46 GMT 2000None

SwitchByte

public class SwitchByte extends Object

Fields Summary
Constructors Summary
Methods Summary
bytebar()

		return 1000;
	
voidvoo()

	byte x = bar();
	switch(x) {
	case 1000: System.exit(1000); break;
	default: System.exit(0); break;
	}