njw45

- friends
93 link karma
1 comment karma
send messageredditor for
what's this?

TROPHY CASE


  • Two-Year Club

Why are lock-free algorithms called lock-free? by jmickeydin compsci

[–]njw45 0 points1 point ago

Lock free is usually defined as uses-only-atomic-operations. Hth...

What's your layout manager of choice? by MatthewGeerin java

[–]njw45 1 point2 points ago

sorry, this has been archived and can no longer be voted on

http://www.jhlabs.com/java/layout/index.html seems interesting, though I've not used it...

Simple problem for a beginner by tusocalypsein java

[–]njw45 0 points1 point ago

sorry, this has been archived and can no longer be voted on

inputName == "" won't work in Java - the == operator is not overloaded for Strings (as they are Objects). Try "".equals(inputName) instead...