0
votes
Why aren’t variables declared in “try” in scope in “catch” or “finally”?
While in your example it is weird that it does not work, take this similar one:
try
{
//Code 1
String s = "1|2";
//Code 2
}
catch
{
…
5
votes
Managed language for scientific computing software
You are asking a fundamentally flawed question. The entire point of managed languages is that you don't handle memory. That is handled by the Garbage Collector, while you can make certain actions t …
3
votes
Can a web service return a stream?
Seeing as web services return objects via serialization, there is definitely no way to create a stream.
However you could just provide chunking.
boolean uploadFile(String username, …
1
vote
Java: StringBuffer & Concatenation
Another possibility is that StringBuilder objects return themselves when you call append, meaning you can do:
str.append("string value").append(" ");
Not quite as …
5
votes
Speeding Up Java
Using StringBuilder in place of large sets of String concatenation gives a great relative performance boost.
However, I can't avoid saying the general practice performance gaining benefit, …
0
votes
Design of inheritance for Validate interfaces
As simple solution to the "can an object be validated" problem is to add a third interface.
This third interface is an empty one that parents both of the others, meaning you can just check …
