Bill K

11,365
reputation
835 views

Registered User

name Bill K
member for 1 year
seen 11 hours ago
website
location Portland, Or
age 45
Long time Java programmer. Currently work on software for cable boxes and DVRs, mostly Java some C/C++
11h
answered Recommendation sought for basic string difference algorithm
11h
comment Recommendation sought for basic string difference algorithm
Sounds like homework--If so you should tag it, it's not like we won't answer.
13h
comment Java ArrayList not allowing me to add from outside constructor
Also, for this to work, I hope student extends people. Your OO isn't actually that bad, although GET RID of the public variables users anduserLoggedIn if you plan on turning this homework in!
13h
comment Java ArrayList not allowing me to add from outside constructor
You don't have a regSeniorStaff method that I can see. If you mean it to be regStudent then I think it should work.
13h
comment How is C# inspired by C++ more than by Java?
On the wikipedia page you reference they list some distinguishing features of CC#. Almost every one is shared with Java. I didn't see one thing that it shared with C++ that Java didn't have as well.
13h
answered How is C# inspired by C++ more than by Java?
13h
comment Java enum inheritance
stackoverflow.com/questions/55375/…
14h
awarded  Enlightened
16h
accepted Java: System.out.println and System.err.println out of order
16h
comment How can I create a java list using the member variables of an existing list, without using a for loop?
Also note that this method is static which points out a potential design flaw. It should actually be a member method of a class that wraps the List. Do that and you've got the start of an actual OO design here...
16h
revised How can I create a java list using the member variables of an existing list, without using a for loop?
Changed int type to Integer as per comment. Assume autoboxing.
16h
accepted What’s up with Java’s “%n” in printf?
16h
answered What’s up with Java’s “%n” in printf?
16h
answered Java: System.out.println and System.err.println out of order
17h
comment Can you have too much of “dynamic” in dynamic languages?
Mostly I think that your code depends on the team. A good team can make good code in any language. A bad team can make bad code in any language--but amazingly bad code takes both a bad team, a flexible language and a very talented programmer... Restricting the smart programmer of the group who finds a construct that helps him create "Concise" or "Expressive" code before he learns to view his code from the Point of View of the next programmer is probably the best thing a language can do.
1d
answered Can you have too much of “dynamic” in dynamic languages?
1d
answered Is Groovy really alternative for Java?
1d
answered Is there a Java Scripting Language that Can Work Without Caching? Jython? Groovy? etc?
2d
comment Good Code Smells?
Good code is readable, but if you pull back a little from that--it's also broken down into understandable chunks that you can understand and analyze fairly easily. Good code has close to zero repetition, and it's generally pretty small because of this. Good code has hints that tell you how to use it, be it comments or unit tests. In good code, passing parameters of a given value is either "Correct" or it fails. No mistake can leave the code it's calling in an indeterminate state.
2d
answered Modelling a Finite Deterministic Automaton via this data *Edit with new code*
Dec
8
comment What is the most spectacular way to shoot yourself in the foot with C++?
@david thornley Took a class in it. I didn't notice much more boilerplate in COBOL than any of the other biggies of the time, just that the business logic was more verbose, but that was REALLY long ago. This is still my favorite answer discussion by the way.
Dec
8
answered Get a list of desktop workspaces in Java
Dec
8
revised Refactoring multiple actionListeners
added 365 characters in body; added 359 characters in body
Dec
8
answered Refactoring multiple actionListeners
Dec
7
revised Is it possible to block/deny a cast conversion in Java?
added 1305 characters in body
Dec
7
revised Is it possible to block/deny a cast conversion in Java?
added 507 characters in body; added 4 characters in body
Dec
7
answered Is it possible to block/deny a cast conversion in Java?
Dec
7
comment Should Java break backwards compatibility in future versions for the benefit of a cleaner language?
@jamesh No, I would not want .toPowerOf as part of my integer class! It's very happy in math land and I'm happy to leave it there! I'm not completely against wrapping numbers--but it seems pretty pointless, the number of times it would be useful is pretty minimal if you code correctly.
Dec
7
comment Should Java break backwards compatibility in future versions for the benefit of a cleaner language?
When the framework your app relies on isn't ported to a new version of Java because of incompatibilities, leaving you stranded in 1.3.x land (or worse), you'll understand. I've been on multiple projects where this was an issue. And no, changing out the framework was not a possibility.
Dec
7
comment Should Java break backwards compatibility in future versions for the benefit of a cleaner language?
It's still true.
Dec
7
revised Observer Design Pattern
added 734 characters in body
Dec
7
answered Observer Design Pattern
Dec
6
awarded  Mortarboard
Dec
4
accepted Override fillInStackTrace for control flow / performance.
Dec
4
comment Caveats to watch for in transition from Sun JVM to JRockit?
After a few jumps from searching for JRockit I ended up here: shudo.net/jit/perf Where there are some awesome performance tests showing Java server faster than C compiled with GCC (Visual C++ is still faster in most cases.) +1 awesome... But I'm afraid it doesn't make JRockit look very well..
Dec
4
comment Clean up code in finalize() or finally()?
I didn't know that since finalize predated references--they must have reimplemented it (For instance, the system I'm working on does not have references but it still has finalize). The point was, you can't rely on finalize across implementations to be called. It might work, there might be a command-line switch that forces it to be called before exit, but it's runtime dependent, not something you can control at compile time. Phantom References have a reliable behavior AND you aren't executing code inside the object you are cleaning.
Dec
4
awarded  java
Dec
4
answered Subclasses causing unexpected behavior in superclasses — OO design question
Dec
4
comment Clean up code in finalize() or finally()?
finally are not always possible--they will only work if your code flows continuously from where your resource is allocated to where it's cleaned up. What if you allocate it when opening a GUI screen and clean it up after the user hits the "OK" button?
Dec
4
revised Clean up code in finalize() or finally()?
deleted 814 characters in body
Dec
4
answered Clean up code in finalize() or finally()?
Dec
3
answered Can I compile a java file with a different name than the class?
Dec
3
revised Override fillInStackTrace for control flow / performance.
added 1781 characters in body; added 92 characters in body
Dec
3
comment Override fillInStackTrace for control flow / performance.
The indexOf thing is a bit of a hack. They are hacking additional data into an int. Although this makes things simpler sometimes, it can be replaced by two mechanisms--you can break it into two calls (test to see if it exists, then get the index) or you can return an object with an index and a boolean. Both will absolutely be clearer and less code than dealing with an exception, and honestly both are probably clearer than the current indexOf implementation with the exception that the current keeps all the info in one call (which has some advantages when trying to comprehend the SDK)
Dec
3
comment Benchmarking Desktop Applications
Awesome--glad I could help.
Dec
2
answered Override fillInStackTrace for control flow / performance.
Dec
2
comment What is the overhead of a method call in a good Java VM?
I'm extremely interested in where you get your speed stats. The test results I've seen on the HotSpot VM have been nearly C-speed, but I haven't really tested myself. If you have another source, I'd love to read through it. I've been getting my speed comparisons from the programming shootout game (google it) which generally put Java as the fastest language after C, and in some cases rate it as fast. The only time Java really seems to suffer is in loading the VM (which does not concur at all with your assertion). More info please!
Dec
2
answered What is the overhead of a method call in a good Java VM?
Dec
2
comment Which is more secure or more used .net or J2EE?
I would say just as a matter of accuracy that you are completely wrong. A VM based technology like J2EE or .net is MUCH better than a C/... based technology simply because bugs are less likely to cause a security hole in the VM languages. There are no buffer overruns and no memory tricks to play. Aside from that you are right about the languages (although I suggest a different POV in my answer)
Dec
2
answered Which is more secure or more used .net or J2EE?