Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
import java.util.ArrayList; import java.util.List; public class Pizza{ private String crustType = "Thick"; private boolean extraCheese = false; private boolean forDelivery = false; private List<String> toppings = new ArrayList<String>(); public Pizza(){ } public Pizza(String crust, boolean extraCheese, boolean forDelivery, String...toppings){ this.crustType = crust; this.extraCheese = extraCheese; this.forDelivery = forDelivery; for ( String t : toppings ){ this.topings.add(t); } } public String getCrustType() { return crustType; } public void setCrustType(String crustType) { this.crustType = crustType; } public boolean isExtraCheese() { return extraCheese; } public void setExtraCheese(boolean extraCheese) { this.extraCheese = extraCheese; } public boolean isForDelivery() { return forDelivery; } public void setForDelivery(boolean forDelivery) { this.forDelivery = forDelivery; } public List<String> getToppings() { return toppings; } public void addTopping(String topping) { this.toppings.add(topping); } }
/** * If the program is in debug mode */ public final boolean DEBUG = true; /** * Some Instance String */ private String someString; /** * Get the first line from a file and save it to a variable */ public void getFirstLine(File f) { try { BufferedReader in = new BufferedReader(new FileReader(f)); someString = in.readLine(); in.close(); }catch(IOException e) { if(DEBUG) { e.printStackTrace(): } System.err.println("An error occured reading the file, setting default properties"); someString = "Yellow Unicorn"; } }