• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 02:43
CET 08:43
KST 16:43
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners11Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12
Community News
[TLMC] Fall/Winter 2025 Ladder Map Rotation10Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA8StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7
StarCraft 2
General
RSL Season 3 - RO16 Groups A & B Preview Mech is the composition that needs teleportation t [TLMC] Fall/Winter 2025 Ladder Map Rotation Weekly Cups (Nov 3-9): Clem Conquers in Canada Craziest Micro Moments Of All Time?
Tourneys
RSL Revival: Season 3 Constellation Cup - Main Event - Stellar Fest Tenacious Turtle Tussle Master Swan Open (Global Bronze-Master 2) Sparkling Tuna Cup - Weekly Open Tournament
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection
Brood War
General
FlaSh on: Biggest Problem With SnOw's Playstyle Brood War web app to calculate unit interactions [ASL20] Ask the mapmakers — Drop your questions BW General Discussion Terran 1:35 12 Gas Optimization
Tourneys
[Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL21] RO32 Group D - Sunday 21:00 CET [BSL21] RO32 Group C - Saturday 21:00 CET
Strategy
Current Meta Simple Questions, Simple Answers PvZ map balance How to stay on top of macro?
Other Games
General Games
Beyond All Reason Nintendo Switch Thread Should offensive tower rushing be viable in RTS games? Clair Obscur - Expedition 33 Stormgate/Frost Giant Megathread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
Things Aren’t Peaceful in Palestine US Politics Mega-thread Artificial Intelligence Thread Russo-Ukrainian War Thread Canadian Politics Mega-thread
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Dyadica Gospel – a Pulp No…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1761 users

Homework thread

Forum Index > Closed
Post a Reply
Normal
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
Last Edited: 2009-05-28 00:29:46
May 28 2009 00:28 GMT
#1
Java: Exception Handling + Process Endin's.

1) I'm just having trouble figuring out what's wrong.

2 *If a mod closes this... just ban me from site , christ.
I seriously remember helping people with "homework" countless times - and this isn't even that. This, SHOULD be working, actually, but it isn't.


I have this simple program, with three classes; Starter contains the main, which does nothing but initialize the UserInput class. Inside the UserInput class is where I'm having the problem. Basically, where it throws the exception, it is ending the process, despite catching it. How would I modify this so that the exception gets handled, and the process continues?
public class Starter{

public static void main(String[] args){

UserInput ui = new UserInput();

}
}

And:

public class StringTooLongException extends Exception{

public StringTooLongException(){
}

public String getMessage(){
return "String has more than the max allowed characters.";
}

}

And:

import java.util.Scanner;

public class UserInput{

public UserInput(){

try{
String done = "DONE";
System.out.println("Type a string. Max 20 characters.");
System.out.println("Type DONE, in all caps to end.");
Scanner scan = new Scanner(System.in);
String s = scan.next();
while(s.compareTo(done) != 0){
if(s.length() > 20){
/**
* Here is the problem, it is ending the process,
* when it is obviously catching the exception.
*/
throw new StringTooLongException();
}
System.out.println(s);
s = scan.next();
}
}
catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Ending program.");
}
}
}


I've tried so many things, and to be honest I'm quite angry -_- , considering I have (basically) the same code in these three classes:

import java.util.Scanner;
public class Starter {

public static void main(String[] args) {

String done = "DONE";
System.out.println("DocType? U = Unclassified, C = Confidential, P = Proprietary.");
System.out.println("Type DONE, in all caps to end.");
Scanner scan = new Scanner(System.in);
String docType = scan.next();
while(docType.compareTo(done) != 0){
Document doc = new Document(docType);
System.out.println(doc);
docType = scan.next();
}
System.out.println("Program Fin~");
}

}

And:

public class Document {

private String dType = "U";
public Document(String docType){
try{
if( docType.compareToIgnoreCase("U") != 0
&& docType.compareToIgnoreCase("C") != 0
&& docType.compareToIgnoreCase("P") != 0 )
throw new InvalidDocumentCodeException();
dType = docType;
}
catch(InvalidDocumentCodeException e){
System.out.println("Exception caught and handled! Continuing...");
System.out.println(e.getMessage());
}
}

public void setDocType(String docType){
dType = docType;
}
public String toString(){
return "Document type: "+ dType.toUpperCase();
}
}

And:

public class InvalidDocumentCodeException extends Exception{

public InvalidDocumentCodeException(){
}

public String getMessage(){
return "Document code must be U (Unclassified), C (Confidential), or P (Proptietary)." +
"\nDocument will default to Unclassified.";
}

}


Thanks muchly! :/
"come korea next time... FXO house... 10 korean, 10 korean"
RaGe
Profile Blog Joined July 2004
Belgium9949 Posts
May 28 2009 00:38 GMT
#2
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code

program is doing what you made it to do lol
Moderatorsometimes I get intimidated by the size of my right testicle
RaGe
Profile Blog Joined July 2004
Belgium9949 Posts
May 28 2009 00:44 GMT
#3
wow i get more and more convinced you have no idea what you're doing and just copy pasted shit or something

i mean, your catch block is:

catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Ending program.");
}


you even print that you're ending the program and you dont want it to end the program?
Moderatorsometimes I get intimidated by the size of my right testicle
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 00:49 GMT
#4
On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code

program is doing what you made it to do lol


Firstly, the throw is inside a while loop. What I'm wondering is why the crap it isn't continuing the while loop, opposed to what it does now; which is ends the program. It should not be ending the program, it should be throwing an error, catching it, and then going back to the while loop.

On May 28 2009 09:44 RaGe wrote:
wow i get more and more convinced you have no idea what you're doing and just copy pasted shit or something

i mean, your catch block is:

catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Ending program.");
}


you even print that you're ending the program and you dont want it to end the program?


Oh noes, I has a random print line that hasn't been changed from a previous version. Printing text doesn't end a program. ... (At least not this one)
"come korea next time... FXO house... 10 korean, 10 korean"
Abydos1
Profile Blog Joined October 2008
United States832 Posts
May 28 2009 00:53 GMT
#5
On May 28 2009 09:28 HeavOnEarth wrote:
Show nested quote +

import java.util.Scanner;

public class UserInput{

public UserInput(){

try{
String done = "DONE";
System.out.println("Type a string. Max 20 characters.");
System.out.println("Type DONE, in all caps to end.");
Scanner scan = new Scanner(System.in);
String s = scan.next();
while(s.compareTo(done) != 0){
if(s.length() > 20){
/**
* Here is the problem, it is ending the process,
* when it is obviously catching the exception.
*/
throw new StringTooLongException();
}
System.out.println(s);
s = scan.next();
}
}
catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Ending program.");
}
}
}



If you're talking about this one the exception keeps going up the stack until it gets caught or the program ends, thus its getting out of the while loop.
"...perhaps the greatest joy possible in Starcraft, being accused of being a maphacker" - Day[9]
RaGe
Profile Blog Joined July 2004
Belgium9949 Posts
May 28 2009 00:54 GMT
#6
Maybe you should stop being so defensive and read the fucking solution for a change.

On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code



Your catch block is outside of the while loop, so it doesn't continue in the while loop after it executes the catch block. Java does not magically read your mind. This wasn't supposed to work. This isn't some obscure error. This is you skipping through whatever 'How to handle exceptions' guide you read, copy pasting some stupid shit that you don't understand, and asking tl to fix your errors.
Moderatorsometimes I get intimidated by the size of my right testicle
qrs
Profile Blog Joined December 2007
United States3637 Posts
Last Edited: 2009-05-28 00:56:07
May 28 2009 00:55 GMT
#7
^yes, but your catch block is outside the while loop. It's the same as if you would have used goto in C.
edit: Rage pre-empted me
'As per the American Heart Association, the beat of the Bee Gees song "Stayin' Alive" provides an ideal rhythm in terms of beats per minute to use for hands-only CPR. One can also hum Queen's "Another One Bites The Dust".' —Wikipedia
Malongo
Profile Blog Joined November 2005
Chile3472 Posts
May 28 2009 00:55 GMT
#8
I dont understand this program does exaclty what you want imo. LOL.
Help me! im still improving my English. An eye for an eye makes the whole world blind. M. G.
Malongo
Profile Blog Joined November 2005
Chile3472 Posts
May 28 2009 00:56 GMT
#9
On May 28 2009 09:49 HeavOnEarth wrote:
Show nested quote +
On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code

program is doing what you made it to do lol


Firstly, the throw is inside a while loop. What I'm wondering is why the crap it isn't continuing the while loop, opposed to what it does now; which is ends the program. It should not be ending the program, it should be throwing an error, catching it, and then going back to the while loop.

Show nested quote +
On May 28 2009 09:44 RaGe wrote:
wow i get more and more convinced you have no idea what you're doing and just copy pasted shit or something

i mean, your catch block is:

catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Ending program.");
}


you even print that you're ending the program and you dont want it to end the program?


Oh noes, I has a random print line that hasn't been changed from a previous version. Printing text doesn't end a program. ... (At least not this one)

Catch is outside the loop... -_-
Help me! im still improving my English. An eye for an eye makes the whole world blind. M. G.
micronesia
Profile Blog Joined July 2006
United States24740 Posts
Last Edited: 2009-05-28 01:05:21
May 28 2009 00:57 GMT
#10
I love how you didn't put java or programming or anything like that in the thread title lol

I also like how I have absolutely nothing to contribute as I don't remember java at all.
ModeratorThere are animal crackers for people and there are people crackers for animals.
Abydos1
Profile Blog Joined October 2008
United States832 Posts
May 28 2009 00:58 GMT
#11
http://java.sun.com/docs/books/tutorial/essential/exceptions/
"...perhaps the greatest joy possible in Starcraft, being accused of being a maphacker" - Day[9]
Malongo
Profile Blog Joined November 2005
Chile3472 Posts
May 28 2009 01:01 GMT
#12
HOE I have a suggestion to make life easier to you:
Identation: helps to find easily where your code blocks belong, I hate to see a code that ends in 3/4 brackets and I dont know where the fuck they belong.

Help me! im still improving my English. An eye for an eye makes the whole world blind. M. G.
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 01:02 GMT
#13
i'll post in a sec (at the bullshit)
"come korea next time... FXO house... 10 korean, 10 korean"
Abydos1
Profile Blog Joined October 2008
United States832 Posts
May 28 2009 01:02 GMT
#14
On May 28 2009 10:01 Malongo wrote:
HOE I have a suggestion to make life easier to you:
Identation: helps to find easily where your code blocks belong, I hate to see a code that ends in 3/4 brackets and I dont know where the fuck they belong.



fyi, it is indented but quote doesn't show them correctly.
"...perhaps the greatest joy possible in Starcraft, being accused of being a maphacker" - Day[9]
Malongo
Profile Blog Joined November 2005
Chile3472 Posts
May 28 2009 01:06 GMT
#15
On May 28 2009 10:02 Abydos1 wrote:
Show nested quote +
On May 28 2009 10:01 Malongo wrote:
HOE I have a suggestion to make life easier to you:
Identation: helps to find easily where your code blocks belong, I hate to see a code that ends in 3/4 brackets and I dont know where the fuck they belong.



fyi, it is indented but quote doesn't show them correctly.

Lollol true.
Help me! im still improving my English. An eye for an eye makes the whole world blind. M. G.
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 01:12 GMT
#16
On May 28 2009 09:53 Abydos1 wrote:
Show nested quote +
On May 28 2009 09:28 HeavOnEarth wrote:

import java.util.Scanner;

public class UserInput{

public UserInput(){

try{
String done = "DONE";
System.out.println("Type a string. Max 20 characters.");
System.out.println("Type DONE, in all caps to end.");
Scanner scan = new Scanner(System.in);
String s = scan.next();
while(s.compareTo(done) != 0){
if(s.length() > 20){
/**
* Here is the problem, it is ending the process,
* when it is obviously catching the exception.
*/
throw new StringTooLongException();
}
System.out.println(s);
s = scan.next();
}
}
catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Ending program.");
}
}
}



If you're talking about this one the exception keeps going up the stack until it gets caught or the program ends, thus its getting out of the while loop.


Thank you for actually knowing what you're talking about. I will look into this, after I rape some BM'ing assholes below.
-------------------
On May 28 2009 09:54 RaGe wrote:
Maybe you should stop being so defensive and read the fucking solution for a change.

Show nested quote +
On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code



Your catch block is outside of the while loop, so it doesn't continue in the while loop after it executes the catch block. Java does not magically read your mind. This wasn't supposed to work. This isn't some obscure error. This is you skipping through whatever 'How to handle exceptions' guide you read, copy pasting some stupid shit that you don't understand, and asking tl to fix your errors.


Maybe you should learn Java before you post. You can't put catch statement inside a try statement. Idiot.

On May 28 2009 09:55 qrs wrote:
^yes, but your catch block is outside the while loop. It's the same as if you would have used goto in C.
edit: Rage pre-empted me

Same to you, cept I'm going to be nice about it. A catch can't go inside a try statement.
-------------------
On May 28 2009 09:55 Malongo wrote:
I dont understand this program does exaclty what you want imo. LOL.

On May 28 2009 09:56 Malongo wrote:
Show nested quote +
On May 28 2009 09:49 HeavOnEarth wrote:
On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code

program is doing what you made it to do lol


Firstly, the throw is inside a while loop. What I'm wondering is why the crap it isn't continuing the while loop, opposed to what it does now; which is ends the program. It should not be ending the program, it should be throwing an error, catching it, and then going back to the while loop.

On May 28 2009 09:44 RaGe wrote:
wow i get more and more convinced you have no idea what you're doing and just copy pasted shit or something

i mean, your catch block is:

catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Ending program.");
}


you even print that you're ending the program and you dont want it to end the program?


Oh noes, I has a random print line that hasn't been changed from a previous version. Printing text doesn't end a program. ... (At least not this one)

Catch is outside the loop... -_-


It does what it fucking does, and I don't understand why it's ending instead of continuing.
And again, catch can't go inside a try.

On May 28 2009 10:01 Malongo wrote:
HOE I have a suggestion to make life easier to you:
Identation: helps to find easily where your code blocks belong, I hate to see a code that ends in 3/4 brackets and I dont know where the fuck they belong.


Die. Please.
"come korea next time... FXO house... 10 korean, 10 korean"
qrs
Profile Blog Joined December 2007
United States3637 Posts
Last Edited: 2009-05-28 01:17:54
May 28 2009 01:17 GMT
#17
Dude, no one is saying that the catch should go inside the try. If you want the while loop to continue, then the catch should go inside the while loop. Why don't you read what people write? Try is not a loop.
'As per the American Heart Association, the beat of the Bee Gees song "Stayin' Alive" provides an ideal rhythm in terms of beats per minute to use for hands-only CPR. One can also hum Queen's "Another One Bites The Dust".' —Wikipedia
aers *
Profile Joined January 2009
United States1210 Posts
May 28 2009 01:17 GMT
#18
Put the try inside the while loop.
Chill
Profile Blog Joined January 2005
Calgary25988 Posts
May 28 2009 01:19 GMT
#19
Stop being so aggressive to the suggestions here. Also please stop martyring yourself.

People are giving you good advice and your reaction to it is terrible.
Moderator
RaGe
Profile Blog Joined July 2004
Belgium9949 Posts
May 28 2009 01:20 GMT
#20
First of all: Tell me where I tell you to put your catch block inside your try block? Right, no where. You're the one that doesn't know where to put it, not me.

Secondly: Don't tell me to go learn some Java when you're learning the basic shit yourself and don't even realize how retarded all your previous statements were.

Lastly: Can you please tell me who the fuck you're sharing your account with that is making these dumbass statements? Apparently your IP has been static for days, and now it changes for every post you make about this problem.

Abusing your forum regular status to get answers for a friend that's apparently retarded. Way to fucking go.
Moderatorsometimes I get intimidated by the size of my right testicle
qrs
Profile Blog Joined December 2007
United States3637 Posts
May 28 2009 01:22 GMT
#21
On May 28 2009 10:20 RaGe wrote:
Lastly: Can you please tell me who the fuck you're sharing your account with that is making these dumbass statements? Apparently your IP has been static for days, and now it changes for every post you make about this problem.

Aha! Clever, RaGe.
'As per the American Heart Association, the beat of the Bee Gees song "Stayin' Alive" provides an ideal rhythm in terms of beats per minute to use for hands-only CPR. One can also hum Queen's "Another One Bites The Dust".' —Wikipedia
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 01:22 GMT
#22
We're both working on the same thing, =/.
"come korea next time... FXO house... 10 korean, 10 korean"
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 01:23 GMT
#23
I don't see how that's even relevant anyways?
"come korea next time... FXO house... 10 korean, 10 korean"
fusionsdf
Profile Blog Joined June 2006
Canada15390 Posts
May 28 2009 01:25 GMT
#24
everything has been answered for you

stop acting like a douche yo
SKT_Best: "I actually chose Protoss because it was so hard for me to defeat Protoss as a Terran. When I first started Brood War, my main race was Terran."
imDerek
Profile Blog Joined August 2007
United States1944 Posts
May 28 2009 01:25 GMT
#25
try-catch-finally
Least favorite progamers: Leta, Zero, Mind, Shine, free, really <-- newly added
Chill
Profile Blog Joined January 2005
Calgary25988 Posts
May 28 2009 01:26 GMT
#26
You don't see why letting people log onto your account, using your veteran status to get answers, and then posting ridiculous flames is relevant?
Moderator
Divinek
Profile Blog Joined November 2006
Canada4045 Posts
May 28 2009 01:35 GMT
#27
You sure raped those bm'ing assholes but not actually reading their posts then replying!
Never attribute to malice that which can be adequately explained by stupidity.
Oh goodness me, FOX tv where do you get your sight? Can't you keep track, the puck is black. That's why the ice is white.
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 01:38 GMT
#28
by courtesy of chill
http://www.teamliquid.net/staff/Chill/heav.png
lmfao
"come korea next time... FXO house... 10 korean, 10 korean"
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 01:44 GMT
#29
import java.util.Scanner;
public class UserInput{

public String done= "DONE";;
public Scanner scan = new Scanner(System.in);
public String scanned = "";

public UserInput(){

System.out.println("Type a string. Max 20 characters.");
System.out.println("Type DONE, in all caps to end.");
while(scanned.compareTo(done) != 0){
try{
scanned = scan.next();
if(scanned.length() > 20){
throw new StringTooLongException();
}
System.out.println(scanned);
}
catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Continuing...");
}
}
}

}

Woot. Fixed! Learn English guys. Jesus christ. If you meant to put the ENTIRE TRYCATCH inside the while loop, then that'd have been nice. w00t@Abysdos being helpful, printStackTrace actually made me compare the two programs I had, and whee.
"come korea next time... FXO house... 10 korean, 10 korean"
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 01:46 GMT
#30
Hay RaGe why so cry to Nam instead of to me?
"come korea next time... FXO house... 10 korean, 10 korean"
fusionsdf
Profile Blog Joined June 2006
Canada15390 Posts
May 28 2009 01:46 GMT
#31
no

obviously we meant put the try statement both inside and outside the while loop, and the catch statement should be in another program altogether.

HOW COULD WE BE SO UNCLEAR!
SKT_Best: "I actually chose Protoss because it was so hard for me to defeat Protoss as a Terran. When I first started Brood War, my main race was Terran."
fusionsdf
Profile Blog Joined June 2006
Canada15390 Posts
May 28 2009 01:47 GMT
#32
I mean dear god

try and catch in the same scope

WHAT ARE YOU TRYING TO DO TO ME
SKT_Best: "I actually chose Protoss because it was so hard for me to defeat Protoss as a Terran. When I first started Brood War, my main race was Terran."
RaGe
Profile Blog Joined July 2004
Belgium9949 Posts
Last Edited: 2009-05-28 01:53:36
May 28 2009 01:51 GMT
#33
On May 28 2009 10:46 HeavOnEarth wrote:
Hay RaGe why so cry to Nam instead of to me?

Cause if you still don't understand what I wrote, you still don't understand how it works.

See you back when your next homework is due, cause I don't see you comprehending anything anytime soon.

edit: I mean, looking back, do you understand why your previous code didn't work? Why you needed to change the location of your try and catch blocks?

The mistake you made was assuming when an exception is thrown, after the catch block is executed, it resumes in the try block (which would completely ruin the function of try-catch blocks btw). I corrected that by literally saying it resumes after the catch block.
Moderatorsometimes I get intimidated by the size of my right testicle
nataziel
Profile Blog Joined October 2008
Australia1455 Posts
May 28 2009 01:52 GMT
#34
-_- = This whole thread
u gotta sk8
mahnini
Profile Blog Joined October 2005
United States6862 Posts
May 28 2009 01:52 GMT
#35
this is a terrible homework thread

1. code is unreadable
2. OP is stupid
3. OP doesnt know he's stupid
the world's a playground. you know that when you're a kid, but somewhere along the way everyone forgets it.
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 01:54 GMT
#36
My friend's SFSkabam then.
"come korea next time... FXO house... 10 korean, 10 korean"
azndsh
Profile Blog Joined August 2006
United States4447 Posts
May 28 2009 01:55 GMT
#37
wait... how the hell is this NOT homework?
fusionsdf
Profile Blog Joined June 2006
Canada15390 Posts
May 28 2009 01:57 GMT
#38
it is, hence them both working on the same thing. He just figures if he lies about it he can keep his thread open
SKT_Best: "I actually chose Protoss because it was so hard for me to defeat Protoss as a Terran. When I first started Brood War, my main race was Terran."
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 01:58 GMT
#39
He lives in Oregon i live in Texas
This is totally classwork for college. you got me man.
"come korea next time... FXO house... 10 korean, 10 korean"
SFSKabam
Profile Joined May 2009
United States1 Post
May 28 2009 01:59 GMT
#40
On May 28 2009 10:47 fusionsdf wrote:
I mean dear god

try and catch in the same scope

WHAT ARE YOU TRYING TO DO TO ME

On May 28 2009 10:46 fusionsdf wrote:
no

obviously we meant put the try statement both inside and outside the while loop, and the catch statement should be in another program altogether.

HOW COULD WE BE SO UNCLEAR!

I know right? Jesus, if only everyone ALREADY knew Java! Then I wouldn't need to politely ask a fucking question, and have some piece of shit named RaGe basically passive flame me with bullshit statement such as "LAWL YOURNUB LERN 2 KNOW JAVA, WHY ASK QUESTION LOL YOU HAS PRINT LINE OHNOES."

On May 28 2009 10:51 RaGe wrote:
Show nested quote +
On May 28 2009 10:46 HeavOnEarth wrote:
Hay RaGe why so cry to Nam instead of to me?

Cause if you still don't understand what I wrote, you still don't understand how it works.

See you back when your next homework is due, cause I don't see you comprehending anything anytime soon.

Actually, this's the first problem I've had big enough problem to fucking post online. Probably not the last, but certainly the last for a long time.

On May 28 2009 10:52 mahnini wrote:
this is a terrible homework thread

1. code is unreadable
2. OP is stupid
3. OP doesnt know he's stupid


1: Code is perfeclty indented, TL.net is just pathetic and doesn't know what a "tab" space is?
2: Rofl
3: Rofl these don't even deserve a comment.

On May 28 2009 10:51 RaGe wrote:
edit: I mean, looking back, do you understand why your previous code didn't work? Why you needed to change the location of your try and catch blocks?

The mistake you made was assuming when an exception is thrown, after the catch block is executed, it resumes in the try block (which would completely ruin the function of try-catch blocks btw). I corrected that by literally saying it resumes after the catch block.

JESUS CHRIST, THAT'S EXACTLY WHAT I ASKED AT THE TOP?

ME:
Firstly, the throw is inside a while loop. What I'm wondering is why the crap it isn't continuing the while loop, opposed to what it does now; which is ends the program. It should not be ending the program, it should be throwing an error, catching it, and then going back to the while loop.

Notice how I said "I'm wondering why ..." ? The first time I put trycatch inside a while loop I got a fucking runtime error in Eclipse.

ALSO IT'S NOT FUCKING HOMEWORK. IT'S HELP IN UNDERSTANDING. Fuck off.
TL.Net fails. lawl.
fusionsdf
Profile Blog Joined June 2006
Canada15390 Posts
May 28 2009 02:01 GMT
#41
On May 28 2009 09:54 RaGe wrote:
Maybe you should stop being so defensive and read the fucking solution for a change.

Show nested quote +
On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code



Your catch block is outside of the while loop, so it doesn't continue in the while loop after it executes the catch block. Java does not magically read your mind. This wasn't supposed to work. This isn't some obscure error. This is you skipping through whatever 'How to handle exceptions' guide you read, copy pasting some stupid shit that you don't understand, and asking tl to fix your errors.



seems like he answered the question pretty obviously to me
SKT_Best: "I actually chose Protoss because it was so hard for me to defeat Protoss as a Terran. When I first started Brood War, my main race was Terran."
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 02:02 GMT
#42
.. so RaGe agrees , to argue with SFSkabam .. and you ban him before RaGe even replies?
"come korea next time... FXO house... 10 korean, 10 korean"
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 02:03 GMT
#43
o noz lets not even address any points of his new post and just ban him
"come korea next time... FXO house... 10 korean, 10 korean"
mahnini
Profile Blog Joined October 2005
United States6862 Posts
May 28 2009 02:03 GMT
#44
i dunno maybe you should take the time to properly indent the code if you want people to take the time to read it. might want to give it some white space too
the world's a playground. you know that when you're a kid, but somewhere along the way everyone forgets it.
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 02:04 GMT
#45
I mean jesus christ, have you read the begginning of the thread? RaGe started posting shit , pretty much unprovoked as far as i can tell
"come korea next time... FXO house... 10 korean, 10 korean"
aers *
Profile Joined January 2009
United States1210 Posts
May 28 2009 02:04 GMT
#46
it should be throwing an error, catching it, and then going back to the while loop.


Your problem is this is wrong. That's not how try/catch loops work. That is exactly what RaGe pointed out in his first post.

1) try <something>
2) throw exception
3) catch exception
4) execution continues after try/catch block
Chill
Profile Blog Joined January 2005
Calgary25988 Posts
May 28 2009 02:04 GMT
#47
His first post was talking shit to a moderator, so yes, I ban him.
His "real" first post was showing no humility and talking shit to people trying to help him.
Moderator
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 02:05 GMT
#48
On May 28 2009 11:03 mahnini wrote:
i dunno maybe you should take the time to properly indent the code if you want people to take the time to read it. might want to give it some white space too

can we drop this
read the thread before you post
here it is for you
On May 28 2009 10:02 Abydos1 wrote:
Show nested quote +
On May 28 2009 10:01 Malongo wrote:
HOE I have a suggestion to make life easier to you:
Identation: helps to find easily where your code blocks belong, I hate to see a code that ends in 3/4 brackets and I dont know where the fuck they belong.



fyi, it is indented but quote doesn't show them correctly.

"come korea next time... FXO house... 10 korean, 10 korean"
Elemenope
Profile Blog Joined March 2006
Burkina Faso1704 Posts
May 28 2009 02:06 GMT
#49
On May 28 2009 11:04 HeavOnEarth wrote:
I mean jesus christ, have you read the begginning of the thread? RaGe started posting shit , pretty much unprovoked as far as i can tell



On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code

program is doing what you made it to do lol




Yeah man, that was quite posting shit, much unprovoked as far as I can tell too.
In DotA you could
Abydos1
Profile Blog Joined October 2008
United States832 Posts
May 28 2009 02:07 GMT
#50
http://lmgtfy.com/?q=java exceptions&l=1

Learn to do some basic searching first...
"...perhaps the greatest joy possible in Starcraft, being accused of being a maphacker" - Day[9]
mahnini
Profile Blog Joined October 2005
United States6862 Posts
Last Edited: 2009-05-28 02:08:28
May 28 2009 02:07 GMT
#51
[ indent ]

makes it 10x easier to read and shows some effort at least. anyway, doesnt really matter cause people sifter through the code anyway and told him what was wrong and he spazzed out.
the world's a playground. you know that when you're a kid, but somewhere along the way everyone forgets it.
So no fek
Profile Blog Joined June 2005
United States3001 Posts
May 28 2009 02:07 GMT
#52
On May 28 2009 11:06 Elemenope wrote:
Show nested quote +
On May 28 2009 11:04 HeavOnEarth wrote:
I mean jesus christ, have you read the begginning of the thread? RaGe started posting shit , pretty much unprovoked as far as i can tell



Show nested quote +
On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code

program is doing what you made it to do lol




Yeah man, that was quite posting shit, much unprovoked as far as I can tell too.


I'd assume he's talking about Rage's second post, which is a small bit on the offense, however, the way the OP handled it from there... /facepalm
#1 Shuttle fan - TeamLiquid CJ Entusman #36 BW4lyfe
ThaddeusK
Profile Joined July 2008
United States233 Posts
May 28 2009 02:07 GMT
#53
rage's first post answered the OP perfectly, shouldve just been closed after it >.>
Chill
Profile Blog Joined January 2005
Calgary25988 Posts
Last Edited: 2009-05-28 02:09:30
May 28 2009 02:08 GMT
#54
Yes I agree Rage escillated it unprovoked. But it's pretty obvious that:
1) You martyr yourself in the first post (slap to moderators' face).
2) It's obviously homework.
3) You don't know what you're doing.

Had you approached with humility and addressed the above three points, we wouldn't be in this situation. Yes, Rage should have been more forgiving and not attacked you/your friend, but after being clearly proven wrong your friend degraded into just insulting everyone. That doesn't fly here.
Moderator
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 02:08 GMT
#55
On May 28 2009 11:06 Elemenope wrote:
Show nested quote +
On May 28 2009 11:04 HeavOnEarth wrote:
I mean jesus christ, have you read the begginning of the thread? RaGe started posting shit , pretty much unprovoked as far as i can tell



Show nested quote +
On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code

program is doing what you made it to do lol




Yeah man, that was quite posting shit, much unprovoked as far as I can tell too.


wow i get more and more convinced you have no idea what you're doing and just copy pasted shit

it's not copy pasted?
at this point he's insulting me as well ; not just my friend

IN response to this
On May 28 2009 09:49 HeavOnEarth wrote:
Show nested quote +
On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code

program is doing what you made it to do lol


Firstly, the throw is inside a while loop. What I'm wondering is why the crap it isn't continuing the while loop, opposed to what it does now; which is ends the program. It should not be ending the program, it should be throwing an error, catching it, and then going back to the while loop.

Show nested quote +
On May 28 2009 09:44 RaGe wrote:
wow i get more and more convinced you have no idea what you're doing and just copy pasted shit or something

i mean, your catch block is:

catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Ending program.");
}


you even print that you're ending the program and you dont want it to end the program?


Oh noes, I has a random print line that hasn't been changed from a previous version. Printing text doesn't end a program. ... (At least not this one)


Rage posts
Maybe you should stop being so defensive and read the fucking solution for a change.

"come korea next time... FXO house... 10 korean, 10 korean"
wesbrown
Profile Joined March 2008
United States31 Posts
Last Edited: 2009-05-28 02:12:36
May 28 2009 02:09 GMT
#56
If you're only using the try/catch block to look for StringTooLongExceptions before printing the input string, you can do this without obfuscating the code by using continue.



+ Show Spoiler +

import java.util.Scanner;
public class UserInput{

public String done= "DONE";;
public Scanner scan = new Scanner(System.in);
public String scanned = "";

public UserInput(){

System.out.println("Type a string. Max 20 characters.");
System.out.println("Type DONE, in all caps to end.");
while(scanned.compareTo(done) != 0){
try{
scanned = scan.next();
if(scanned.length() > 20){
throw new StringTooLongException();
}
System.out.println(scanned);
}
catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Continuing...");
}
}
}

}


becomes

+ Show Spoiler +

import java.util.Scanner;
public class UserInput{

public String done= "DONE";;
public Scanner scan = new Scanner(System.in);
public String scanned = "";

public UserInput(){

System.out.println("Type a string. Max 20 characters.");
System.out.println("Type DONE, in all caps to end.");
while(scanned.compareTo(done) != 0){
scanned = scan.next();
if(scanned.length() > 20){
System.out.println("Input String was too long.");
continue;
}
System.out.println(scanned);
}
}

}



Note that I'm not familiar with the Scanner class, but it doesn't look like it should throw exceptions based on your code. Given that, there is no reason to use a try/catch block.

http://java.sun.com/docs/books/tutorial/java/nutsandbolts/branch.html
ChillIsPathetic
Profile Joined May 2009
1 Post
May 28 2009 02:10 GMT
#57
Chill you're naught but a pathetic power hungry 13 year old? I like how I get BM'd first, and I'm the bad guy. Rofl.
Seriously, almost the entire TL.net community is fucking trash, including the mods. Seriously, why was Kawaii so pissed about this pathetic site.

Lawl, banned:
Reason: Incosiderate newb. Try harder on your next account.

There will be no more accounts (other than this one)? This site was trash the first time I used it, and it was again, even on Nam's account when I was extremely fucking GM. First some pathetic piece of shit mod closes the first thread, and then I get lawl'd by RaGe, who gains a fuckton of retards behind him? Seriously, you people need to burn at the stake.
Rof. This site is trash, and so are the mods apparently?
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 02:10 GMT
#58
On May 28 2009 11:08 Chill wrote:
Yes I agree Rage escillated it unprovoked. But it's pretty obvious that:
1) You martyr yourself in the first post (slap to moderators' face).
2) It's obviously homework.
3) You don't know what you're doing.

Had you approached with humility and avoided the above three points, we wouldn't be in this situation. Yes, Rage should have been more forgiving and not attacked you/your friend, but after being clearly proven wrong your friend degrading into just insulting everyone. That doesn't fly here.

3)He didn't even have a chance to explain what he understands and RaGe shits all over him on it?

2)How is trying to understand something homework- we already posted the code, hell we fixed it as well.
"come korea next time... FXO house... 10 korean, 10 korean"
Abydos1
Profile Blog Joined October 2008
United States832 Posts
May 28 2009 02:10 GMT
#59
Indenting (and syntax highlighting) since TL doesn't do it...

http://pastebin.com/m6e7a70d8
"...perhaps the greatest joy possible in Starcraft, being accused of being a maphacker" - Day[9]
Chill
Profile Blog Joined January 2005
Calgary25988 Posts
May 28 2009 02:11 GMT
#60
On May 28 2009 11:08 HeavOnEarth wrote:
Show nested quote +
On May 28 2009 11:06 Elemenope wrote:
On May 28 2009 11:04 HeavOnEarth wrote:
I mean jesus christ, have you read the begginning of the thread? RaGe started posting shit , pretty much unprovoked as far as i can tell



On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code

program is doing what you made it to do lol




Yeah man, that was quite posting shit, much unprovoked as far as I can tell too.

Show nested quote +

wow i get more and more convinced you have no idea what you're doing and just copy pasted shit

it's not copy pasted?
at this point he's insulting me as well ; not just my friend

IN response to this
Show nested quote +
On May 28 2009 09:49 HeavOnEarth wrote:
On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code

program is doing what you made it to do lol


Firstly, the throw is inside a while loop. What I'm wondering is why the crap it isn't continuing the while loop, opposed to what it does now; which is ends the program. It should not be ending the program, it should be throwing an error, catching it, and then going back to the while loop.

On May 28 2009 09:44 RaGe wrote:
wow i get more and more convinced you have no idea what you're doing and just copy pasted shit or something

i mean, your catch block is:

catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Ending program.");
}


you even print that you're ending the program and you dont want it to end the program?


Oh noes, I has a random print line that hasn't been changed from a previous version. Printing text doesn't end a program. ... (At least not this one)

Show nested quote +

Rage posts
Maybe you should stop being so defensive and read the fucking solution for a change.


I can't even program and I understand what Rage says. Exception thrown = goto catch. Your friend doesn't address this point at all. So Rage says l2read.
Moderator
aers *
Profile Joined January 2009
United States1210 Posts
May 28 2009 02:11 GMT
#61
Yeah, I told him in IRC that using an exception is excessive there. It's a simple while loop that takes input and prints it back out.
mahnini
Profile Blog Joined October 2005
United States6862 Posts
May 28 2009 02:11 GMT
#62
lol
the world's a playground. you know that when you're a kid, but somewhere along the way everyone forgets it.
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 02:12 GMT
#63
On May 28 2009 11:10 ChillIsPathetic wrote:
Chill you're naught but a pathetic power hungry 13 year old? I like how I get BM'd first, and I'm the bad guy. Rofl.
Seriously, almost the entire TL.net community is fucking trash, including the mods. Seriously, why was Kawaii so pissed about this pathetic site.

Lawl, banned:
Reason: Incosiderate newb. Try harder on your next account.

There will be no more accounts (other than this one)? This site was trash the first time I used it, and it was again, even on Nam's account when I was extremely fucking GM. First some pathetic piece of shit mod closes the first thread, and then I get lawl'd by RaGe, who gains a fuckton of retards behind him? Seriously, you people need to burn at the stake.

Uh if i agree do i get banned too?
The bandwagon was pathetic, RaGe flaming first was uncalled for, and the only one who probably helped was Abydos1

On May 28 2009 09:53 Abydos1 wrote:
Show nested quote +
On May 28 2009 09:28 HeavOnEarth wrote:

import java.util.Scanner;

public class UserInput{

public UserInput(){

try{
String done = "DONE";
System.out.println("Type a string. Max 20 characters.");
System.out.println("Type DONE, in all caps to end.");
Scanner scan = new Scanner(System.in);
String s = scan.next();
while(s.compareTo(done) != 0){
if(s.length() > 20){
/**
* Here is the problem, it is ending the process,
* when it is obviously catching the exception.
*/
throw new StringTooLongException();
}
System.out.println(s);
s = scan.next();
}
}
catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Ending program.");
}
}
}



If you're talking about this one the exception keeps going up the stack until it gets caught or the program ends, thus its getting out of the while loop.

"come korea next time... FXO house... 10 korean, 10 korean"
Rostam
Profile Blog Joined December 2008
United States2552 Posts
May 28 2009 02:12 GMT
#64
On May 28 2009 11:10 ChillIsPathetic wrote:
Chill you're naught but a pathetic power hungry 13 year old? I like how I get BM'd first, and I'm the bad guy. Rofl.
Seriously, almost the entire TL.net community is fucking trash, including the mods. Seriously, why was Kawaii so pissed about this pathetic site.

Lawl, banned:
Reason: Incosiderate newb. Try harder on your next account.

There will be no more accounts (other than this one)? This site was trash the first time I used it, and it was again, even on Nam's account when I was extremely fucking GM. First some pathetic piece of shit mod closes the first thread, and then I get lawl'd by RaGe, who gains a fuckton of retards behind him? Seriously, you people need to burn at the stake.


Hey man, they just did your homework for you! You should be grateful.
BW forever || Thall
aers *
Profile Joined January 2009
United States1210 Posts
May 28 2009 02:13 GMT
#65
... I give up.
mahnini
Profile Blog Joined October 2005
United States6862 Posts
May 28 2009 02:14 GMT
#66
On May 28 2009 11:10 Abydos1 wrote:
Indenting (and syntax highlighting) since TL doesn't do it...

http://pastebin.com/m6e7a70d8

ROFL
the world's a playground. you know that when you're a kid, but somewhere along the way everyone forgets it.
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 02:16 GMT
#67
On May 28 2009 11:10 Abydos1 wrote:
Indenting (and syntax highlighting) since TL doesn't do it...

http://pastebin.com/m6e7a70d8

Thank you.
"come korea next time... FXO house... 10 korean, 10 korean"
nataziel
Profile Blog Joined October 2008
Australia1455 Posts
May 28 2009 02:16 GMT
#68
Did I see a thread title change then quick revert?
u gotta sk8
Chill
Profile Blog Joined January 2005
Calgary25988 Posts
May 28 2009 02:16 GMT
#69
On May 28 2009 11:12 HeavOnEarth wrote:
Show nested quote +
On May 28 2009 11:10 ChillIsPathetic wrote:
Chill you're naught but a pathetic power hungry 13 year old? I like how I get BM'd first, and I'm the bad guy. Rofl.
Seriously, almost the entire TL.net community is fucking trash, including the mods. Seriously, why was Kawaii so pissed about this pathetic site.

Lawl, banned:
Reason: Incosiderate newb. Try harder on your next account.

There will be no more accounts (other than this one)? This site was trash the first time I used it, and it was again, even on Nam's account when I was extremely fucking GM. First some pathetic piece of shit mod closes the first thread, and then I get lawl'd by RaGe, who gains a fuckton of retards behind him? Seriously, you people need to burn at the stake.

Uh if i agree do i get banned too?
The bandwagon was pathetic, RaGe flaming first was uncalled for, and the only one who probably helped was Abydos1

Show nested quote +
On May 28 2009 09:53 Abydos1 wrote:
On May 28 2009 09:28 HeavOnEarth wrote:

import java.util.Scanner;

public class UserInput{

public UserInput(){

try{
String done = "DONE";
System.out.println("Type a string. Max 20 characters.");
System.out.println("Type DONE, in all caps to end.");
Scanner scan = new Scanner(System.in);
String s = scan.next();
while(s.compareTo(done) != 0){
if(s.length() > 20){
/**
* Here is the problem, it is ending the process,
* when it is obviously catching the exception.
*/
throw new StringTooLongException();
}
System.out.println(s);
s = scan.next();
}
}
catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Ending program.");
}
}
}



If you're talking about this one the exception keeps going up the stack until it gets caught or the program ends, thus its getting out of the while loop.


Stop fucking martyring yourself. No one gets banned for have rational discussion about moderators.

Rage attacked unprovoked when he shouldn't have; I've already admitted that. However, your friend is much more at fault in this case. And being that he has literally nothing to add and if flaming many people, he is banned.
Moderator
Chill
Profile Blog Joined January 2005
Calgary25988 Posts
May 28 2009 02:17 GMT
#70
Rage's first post is literally everything you need to know. "Didn't help"? If you mean he didn't post the updated code, then sure, but he posted the reason your code wasn't doing what you expected, and everyone can clearly understand it.
Moderator
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 02:17 GMT
#71
On May 28 2009 11:11 Chill wrote:
Show nested quote +
On May 28 2009 11:08 HeavOnEarth wrote:
On May 28 2009 11:06 Elemenope wrote:
On May 28 2009 11:04 HeavOnEarth wrote:
I mean jesus christ, have you read the begginning of the thread? RaGe started posting shit , pretty much unprovoked as far as i can tell



On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code

program is doing what you made it to do lol




Yeah man, that was quite posting shit, much unprovoked as far as I can tell too.


wow i get more and more convinced you have no idea what you're doing and just copy pasted shit

it's not copy pasted?
at this point he's insulting me as well ; not just my friend

IN response to this
On May 28 2009 09:49 HeavOnEarth wrote:
On May 28 2009 09:38 RaGe wrote:
When an exception gets thrown, it immeadiately skips to the Catch, which is at the end of your program, so it terminates the program cause there's no following lines of code

program is doing what you made it to do lol


Firstly, the throw is inside a while loop. What I'm wondering is why the crap it isn't continuing the while loop, opposed to what it does now; which is ends the program. It should not be ending the program, it should be throwing an error, catching it, and then going back to the while loop.

On May 28 2009 09:44 RaGe wrote:
wow i get more and more convinced you have no idea what you're doing and just copy pasted shit or something

i mean, your catch block is:

catch(StringTooLongException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Ending program.");
}


you even print that you're ending the program and you dont want it to end the program?


Oh noes, I has a random print line that hasn't been changed from a previous version. Printing text doesn't end a program. ... (At least not this one)


Rage posts
Maybe you should stop being so defensive and read the fucking solution for a change.


I can't even program and I understand what Rage says. Exception thrown = goto catch. Your friend doesn't address this point at all. So Rage says l2read.


That's nice, Chill. Nowhere was it explained that it doesn't go back to where the throw was. Which is the exact fucking opposite of what my "Teacher" had told / shown us inside a fucking powerpoint presentation.
"come korea next time... FXO house... 10 korean, 10 korean"
RaGe
Profile Blog Joined July 2004
Belgium9949 Posts
May 28 2009 02:18 GMT
#72
If you stopped lying and admitted that you're not working with him on his 'project' and that you have no clue about Java, you would understand that he just copy pasted that entire catch block in to an arbitrary point in his code and was wondering why it didn't work. The reason why my second reply stated this in a little hostile manner is because after your first thread getting closed, you repost it with a question about he a subject that was clearly not even studied. If he read a basic guide on Exceptions, he would've known what I posted in my first solution.

So, what he basically did was:

1. Copy paste code without understanding how it worked.
2. Being puzzled at why it doesn't work, he posted a thread asking for the fix instead of asking for an explanation.
3. Gets his thread closed. Still doesn't think he should actually try researching what he's doing, and reposts in an aggressive way.

I still post the right answer. Then I realize all this and get a little frustrated and post this:

wow i get more and more convinced you have no idea what you're doing and just copy pasted shit


What he does?

4. Denies my completely valid explanation.
5. Starts flaming people.

How can you even defend this?
Moderatorsometimes I get intimidated by the size of my right testicle
Xeofreestyler
Profile Blog Joined June 2005
Belgium6773 Posts
May 28 2009 02:25 GMT
#73
lmao Heavonearth your friend is one frustrated piece of shit

bringing up kawaii's opinion is the cherry though
Graphics
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 02:27 GMT
#74

public class Starter {

public static void main(String[] args) {

String done = "DONE";
System.out.println("DocType? U = Unclassified, C = Confidential, P = Proprietary.");
System.out.println("Type DONE, in all caps to end.");
Scanner scan = new Scanner(System.in);
String docType = scan.next();
while(docType.compareTo(done) != 0){
Document doc = new Document(docType);
System.out.println(doc);
docType = scan.next();
}
System.out.println("Program Fin~");
}

}

public class InvalidDocumentCodeException extends Exception{

public InvalidDocumentCodeException(){
}

public String getMessage(){
return "Document code must be U (Unclassified), C (Confidential), or P (Proptietary)." +
"\nDocument will default to Unclassified.";
}

}

public class Document {

private String dType = "U";
public Document(String docType){
try{
if( docType.compareToIgnoreCase("U") != 0
&& docType.compareToIgnoreCase("C") != 0
&& docType.compareToIgnoreCase("P") != 0 )
throw new InvalidDocumentCodeException();
dType = docType;
}
catch(InvalidDocumentCodeException e){
System.out.println("Exception caught and handled! Continuing...");
System.out.println(e.getMessage());
}
}

public void setDocType(String docType){
dType = docType;
}
public String toString(){
return "Document type: "+ dType.toUpperCase();
}
}

i bet i copied pasted all this shit too right?
"come korea next time... FXO house... 10 korean, 10 korean"
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 02:28 GMT
#75
here's another one..

/**
* @param args
*/
public static void main(String[] args) {
try{
String done = "DONE";
System.out.println("DocType? U = Unclassified, C = Confidential, P = Proprietary.");
System.out.println("Type DONE, in all caps to end.");
Scanner scan = new Scanner(System.in);
String docType = scan.next();
while(docType.compareTo(done) != 0){
if( docType.compareToIgnoreCase("U") != 0
&& docType.compareToIgnoreCase("C") != 0
&& docType.compareToIgnoreCase("P") != 0 )
throw new InvalidDocumentCodeException();
Document doc = new Document(docType);
System.out.println(doc);
docType = scan.next();
}
System.out.println("Program Fin~");
}
catch(InvalidDocumentCodeException e){
System.out.println(e.getMessage());
System.out.println("Exception caught! Ending program.");
}
}

}

public class InvalidDocumentCodeException extends Exception{

public InvalidDocumentCodeException(){
}

public String getMessage(){
return "Document code must be U (Unclassified), C (Confidential), or P (Proptietary).";
}

}

public class Document {

private String dType;
public Document(String docType){
try{
if( docType.compareToIgnoreCase("U") != 0
&& docType.compareToIgnoreCase("C") != 0
&& docType.compareToIgnoreCase("P") != 0 )
throw new InvalidDocumentCodeException();
dType = docType;
}
catch(InvalidDocumentCodeException e){
System.out.println("Exception caught!");
System.out.println(e.getMessage());
}
}

public String toString(){
return "Document type: "+ dType.toUpperCase();
}
}
"come korea next time... FXO house... 10 korean, 10 korean"
HeavOnEarth
Profile Blog Joined March 2008
United States7087 Posts
May 28 2009 02:28 GMT
#76
and i obviously , obviously copied pasted this as well

/**
* @param args
*/
public static void main(String[] args) throws StringTooLongException{

try{
String done = "DONE";
StringTooLongException e;
System.out.println("Type a string. Max 20 characters.");
System.out.println("Type DONE, in all caps to end.");
Scanner scan = new Scanner(System.in);
String s = scan.next();
while(s.compareTo(done) != 0){
if(s.length() > 20){
e = new StringTooLongException();
throw e;
}
System.out.println(s);
s = scan.next();
}
}
catch(StringTooLongException e){
System.out.println("Exception caught! Ending program!");
}

}

}

public class StringTooLongException extends Exception{

StringTooLongException(){
System.out.println("String is greater than 20 characters.");
}

}
"come korea next time... FXO house... 10 korean, 10 korean"
Chill
Profile Blog Joined January 2005
Calgary25988 Posts
May 28 2009 02:30 GMT
#77
Ok. Closing this shit.
Moderator
RaGe
Profile Blog Joined July 2004
Belgium9949 Posts
May 28 2009 02:40 GMT
#78
Rofl, he even admitted to copy pasting in the end.
Moderatorsometimes I get intimidated by the size of my right testicle
Manifesto7
Profile Blog Joined November 2002
Osaka27154 Posts
May 28 2009 06:40 GMT
#79
This whole thread is just wow.
ModeratorGodfather
zatic
Profile Blog Joined September 2007
Zurich15355 Posts
May 28 2009 08:35 GMT
#80
WTF happened here....
ModeratorI know Teamliquid is known as a massive building
Plexa
Profile Blog Joined October 2005
Aotearoa39261 Posts
May 28 2009 11:01 GMT
#81
... TL never ceases to surprise me
Administrator~ Spirit will set you free ~
Normal
Please log in or register to reply.
Live Events Refresh
Next event in 2h 18m
[ Submit Event ]
Live Streams
Refresh
StarCraft: Brood War
Britney 8145
Leta 266
EffOrt 243
Bale 85
Dewaltoss 39
ToSsGirL 22
ivOry 7
NaDa 6
Dota 2
XaKoH 712
League of Legends
JimRising 544
Counter-Strike
fl0m153
Super Smash Bros
Mew2King62
Other Games
summit1g21713
crisheroes297
C9.Mang0183
NeuroSwarm67
Organizations
Other Games
gamesdonequick579
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Berry_CruncH135
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• masondota21411
League of Legends
• Lourlo1517
• Stunt556
Upcoming Events
RSL Revival
2h 18m
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
4h 18m
GuMiho vs MaNa
herO vs ShoWTimE
Classic vs TBD
WardiTV Korean Royale
4h 18m
CranKy Ducklings
1d 2h
RSL Revival
1d 2h
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
1d 4h
Cure vs Reynor
IPSL
1d 9h
ZZZero vs rasowy
Napoleon vs KameZerg
BSL 21
1d 12h
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
2 days
RSL Revival
2 days
Reynor vs sOs
Maru vs Ryung
[ Show More ]
Kung Fu Cup
2 days
WardiTV Korean Royale
2 days
BSL 21
2 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
IPSL
2 days
Dewalt vs WolFix
eOnzErG vs Bonyth
Replay Cast
2 days
Wardi Open
3 days
Monday Night Weeklies
3 days
WardiTV Korean Royale
4 days
BSL: GosuLeague
4 days
The PondCast
5 days
Replay Cast
5 days
RSL Revival
6 days
BSL: GosuLeague
6 days
Liquipedia Results

Completed

Proleague 2025-11-07
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
CSCL: Masked Kings S3
RSL Revival: Season 3
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
META Madness #9
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.