Click here to Skip to main content
15,913,910 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: 2 Dim arrays in Java Pin
dandy7218-Feb-20 5:50
dandy7218-Feb-20 5:50 
GeneralRe: 2 Dim arrays in Java Pin
harold aptroot18-Feb-20 4:03
harold aptroot18-Feb-20 4:03 
GeneralRe: 2 Dim arrays in Java Pin
PIEBALDconsult18-Feb-20 8:37
mvePIEBALDconsult18-Feb-20 8:37 
GeneralRe: 2 Dim arrays in Java Pin
Mark_Wallace18-Feb-20 9:26
Mark_Wallace18-Feb-20 9:26 
GeneralRe: 2 Dim arrays in Java Pin
Nand3218-Feb-20 18:27
Nand3218-Feb-20 18:27 
GeneralRe: 2 Dim arrays in Java Pin
kalberts19-Feb-20 0:58
kalberts19-Feb-20 0:58 
GeneralRe: 2 Dim arrays in Java Pin
Nand3219-Feb-20 3:45
Nand3219-Feb-20 3:45 
GeneralRe: 2 Dim arrays in Java Pin
kalberts19-Feb-20 4:43
kalberts19-Feb-20 4:43 
After working for a while with CHILL, I never understood this "try" fixation - it is just a wart caused by exception handling being a cludge added to C long after its "design".

In CHILL, any block (and contrary to C: A simple statement is a block) can have an exception handler; just add it before the terminating semicolon, whether the block is a simple assignment, a loop, a function body, or even an entire module. To satisfy "C language class" oriented guys, you could say that an ON clause at the end of the block "implies a try at the start of the block" - but there is never any need for an explicit "try" (so it doesn't exist in the language).

Furthermore, to reduce the red tape of exception handling, "ON" is like a C "switch": The exception codes are like labels, followed by a block for handling that exception (but as a simple statement is also a block, there is no red tape for simple, one-statement handing), with an ELSE option.

So to me, C style exception handling is kludgy and inflexible.
GeneralRe: 2 Dim arrays in Java Pin
PIEBALDconsult20-Feb-20 8:47
mvePIEBALDconsult20-Feb-20 8:47 
GeneralRe: 2 Dim arrays in Java Pin
Nand3221-Feb-20 19:07
Nand3221-Feb-20 19:07 
QuestionLeaving work at the doorstep... Pin
Marc Clifton18-Feb-20 3:08
mvaMarc Clifton18-Feb-20 3:08 
AnswerRe: Leaving work at the doorstep... Pin
Dan Neely18-Feb-20 3:14
Dan Neely18-Feb-20 3:14 
AnswerRe: Leaving work at the doorstep... Pin
MarkTJohnson18-Feb-20 3:24
professionalMarkTJohnson18-Feb-20 3:24 
AnswerRe: Leaving work at the doorstep... Pin
Kornfeld Eliyahu Peter18-Feb-20 3:54
professionalKornfeld Eliyahu Peter18-Feb-20 3:54 
AnswerRe: Leaving work at the doorstep... Pin
Mike Hankey18-Feb-20 4:06
mveMike Hankey18-Feb-20 4:06 
GeneralRe: Leaving work at the doorstep... Pin
Nelek18-Feb-20 4:09
protectorNelek18-Feb-20 4:09 
GeneralRe: Leaving work at the doorstep... Pin
Marc Clifton18-Feb-20 4:21
mvaMarc Clifton18-Feb-20 4:21 
AnswerRe: Leaving work at the doorstep... Pin
Maximilien18-Feb-20 4:12
Maximilien18-Feb-20 4:12 
AnswerRe: Leaving work at the doorstep... Pin
Jörgen Andersson18-Feb-20 4:14
professionalJörgen Andersson18-Feb-20 4:14 
AnswerRe: Leaving work at the doorstep... Pin
Mark_Wallace18-Feb-20 4:18
Mark_Wallace18-Feb-20 4:18 
GeneralRe: Leaving work at the doorstep... Pin
Marc Clifton18-Feb-20 4:24
mvaMarc Clifton18-Feb-20 4:24 
AnswerRe: Leaving work at the doorstep... Pin
W Balboos, GHB18-Feb-20 5:44
W Balboos, GHB18-Feb-20 5:44 
AnswerRe: Leaving work at the doorstep... Pin
dandy7218-Feb-20 5:47
dandy7218-Feb-20 5:47 
AnswerRe: Leaving work at the doorstep... Pin
kmoorevs18-Feb-20 5:53
kmoorevs18-Feb-20 5:53 
GeneralRe: Leaving work at the doorstep... Pin
Ravi Bhavnani18-Feb-20 6:35
professionalRavi Bhavnani18-Feb-20 6:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.