User Bill K - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T16:40:44Zhttp://stackoverflow.com/feeds/user/12943http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1487194/subclasses-causing-unexpected-behavior-in-superclasses-oo-design-question/1844148#18441480Answer by Bill K for Subclasses causing unexpected behavior in superclasses — OO design questionBill K2009-12-04T00:45:16Z2009-12-04T00:45:16Z<p>When I first grok'd how inheritance worked I used it a lot. I had these big trees with everything connected one way or another.</p>
<p>What a pain.</p>
<p>For what you want, you should be referencing your object, not extending it.</p>
<p>Also, I'd personally hide any trace of passing a collection from my public API (and, in general, my private API as well). Collections are impossible to make safe. Wrapping a collection (Come on, what's it used for??? You can guess just from the signature, right?) inside a WordCount class or a UsersWithAges class or a AnimalsAndFootCount class can make a lot more sense.</p>
<p>Also having methods like wordCount.getMostUsedWord(), usersWithAges.getUsersOverEighteen() and animalsAndFootCount.getBipeds() method moves repetitive utility functionality scattered throughout your code into your new-fangled business collection where it belongs.</p>
http://stackoverflow.com/questions/1843905/clean-up-code-in-finalize-or-finally/1844020#18440203Answer by Bill K for Clean up code in finalize() or finally()?Bill K2009-12-04T00:12:33Z2009-12-04T00:17:36Z<p>Phantom References will do what you want.</p>
<p>Just don't use finalize. There are a few edge cases where it may be helpful (printing debug info when a class is GC'd has come in handy), but in general don't. There is nothing in the JVM contract that even says it ever has to be called.</p>
<p>There is a very under-publicized type of object called "References". One is made explicitly for things that you think you would use finalize for.</p>
<p>"<a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/ref/PhantomReference.html" rel="nofollow">Phantom reference</a> objects, which are enqueued after the collector determines that their referents may otherwise be reclaimed."</p>
<p>It just occurred to me that there MUST be <a href="http://resources.ej-technologies.com/jprofiler/help/doc/indexRedirect.html?http&&&resources.ej-technologies.com/jprofiler/help/doc/helptopics/config/finalizers.html" rel="nofollow">a description of this on the web</a>--so I'll replace all the "how-to" stuff I just wrote with this reference.</p>
http://stackoverflow.com/questions/1841847/can-i-compile-a-java-file-with-a-different-name-than-the-class/1841879#18418792Answer by Bill K for Can I compile a java file with a different name than the class?Bill K2009-12-03T18:25:07Z2009-12-03T18:25:07Z<p>You must have a public class with the same name as the file name. This is a Very Good Thing. You CAN have secondary classes inside the same file as long as they are not public. They can still be "default" though, so they can still be used by other classes in the same package.</p>
<p>This should not be done for the most part. Java's naming patterns regarding classes and packages are one of the bigger advantages it has--makes a programmers life easier at no cost.</p>
http://stackoverflow.com/questions/1836164/override-fillinstacktrace-for-control-flow-performance/1836231#18362311Answer by Bill K for Override fillInStackTrace for control flow / performance.Bill K2009-12-02T22:15:27Z2009-12-03T18:16:41Z<p>If you think you have to do that, you could probably use from a good refactoring.</p>
<p>My general thought would be that there is a state of failure that you are trying to return up the tree. If that state was set in a common object, then the state would just be there to be queried.</p>
<p>Are you sure that each object is doing just a single thing? Are your objects valid in any state that they can possibly attain?</p>
<p>As a goal, if your objects are more than 10 methods, with most methods being 1 or 2 lines and a few methods being a screen-full or so, you probably need more classes, and as I said, if you actually had enough classes and they had a consistent state, this problem would almost certainly go away.</p>
<p>Example from comments:
In the comment, the asker used indexOf as an example--the way it returns two values in an int. This will always lead to some pretty straight-forward code:</p>
<pre><code>int pos=str.indexOf('a');
if(pos < 0) // Not obvious from code--should comment...
System.out.println("Fail");
else
//Do something with pos...
</code></pre>
<p>He suggests solving this with an exception which would lead to code like this:</p>
<pre><code>try {
int pos=str.indexOf('a');
//Do something with pos...
} catch(CharacterNotFoundInStringException e) {
System.out.println("Fail");
}
</code></pre>
<p>Which has the advantage of being more self documenting because of the new exception type created but has some unusual syntax and requires the creation of a new class (the exception).</p>
<p>My suggestion might be to make a new class as well, but code it this way:</p>
<pre><code>Position pos=str.indexOf('a');
if(!pos.characterFound())
System.out.println("Fail");
else
// do something with pos.location();
</code></pre>
<p>Self documenting, quicker (stack pops with exceptions are always slower), etc.</p>
<p>But as I was saying originally, the biggest advantage is the new class "pos". It will probably turn out to be quite useful. In fact, instead of using pos.location, you may actually move the code from the "else" clause inside of a method in "pos", removing it completely.</p>
<p>Since it could contain business logic, that method in Position may actually be executed by the .indexOf call itself, eliminating the if statement around the call completely.</p>
<p>This doesn't really make much sense for "Generic" library methods like indexOf, it's kind of a pity but SDK methods are really difficult to implement in proper OO, but in your own business logic, you would almost certainly find this new "Position" class very useful in the future.</p>
http://stackoverflow.com/questions/1830179/what-is-the-overhead-of-a-method-call-in-a-good-java-vm/1830204#18302044Answer by Bill K for What is the overhead of a method call in a good Java VM?Bill K2009-12-02T01:58:25Z2009-12-02T01:58:25Z<p>Java doesn't compile directly to machine code, it compiles to bytecode which is then either interpreted or compiled to machine code at runtime--I have no idea how to get to the machine code at runtime, I just imagine it as this huge mass of shifting, changing bytes that just ends up executing DAMN quickly and reliably.</p>
<p>A small method call should compile out completely at runtime. Even a large method call can be written as in-line machine code by the VM if enough references can be resolved or ignored.</p>
<p>Using Final can help a lot because it gives the VM hints as to how it might optimize even more.</p>
<p>Since a method call can actually compile out completely and at best has a minimal cost anyway--you really shouldn't worry about it. Just code your best and worry about performance problems when you have a failing performance spec (at which point spot-optimizing will do MUCH better than trying to eliminate method calls across your code, ruining your codebase for everyone involved).</p>
<p>Note that because of the runtime analysis, it can actually be faster in some very rare cases than similar code in C (The c compiler won't profile at runtime and hand-optimize your code for you, you have to do all that yourself).</p>
http://stackoverflow.com/questions/1829842/which-is-more-secure-or-more-used-net-or-j2ee/1829985#18299854Answer by Bill K for Which is more secure or more used .net or J2EE?Bill K2009-12-02T00:43:02Z2009-12-02T00:43:02Z<p>Just to add something to the mix.</p>
<p>Everyone is right that they are pretty much the same and it's the app that matters. Java and .net are both VMs that allow additional security, both would be more secure than a non-VM app just because the VM protects you from many bugs (I guess if you program perfectly without bugs, this isn't valid and all apps you write are equally secure--but this only applies to Jon Skeet)</p>
<p>Anyway, I'd say the biggest difference is that if you are running .net, you are almost certainly going to be running on top of Windows. A windows box CAN be secured pretty well, but it's hard. A minimal linux distro made for security is much safer if piloted by a good admin. Even if Windows were trimmed down by a good admin, without the ability to verify the source code by hand, you still can't be sure.</p>
<p>For a poor admin, you'd probably be better off with an apple server, they are locked down pretty well.</p>
<p>It's simply that with .net these aren't options.</p>
http://stackoverflow.com/questions/227743/stringbuilder-how-to-get-the-final-string/227817#2278170Answer by Bill K for StringBuilder: how to get the final String?Bill K2008-10-22T22:46:37Z2009-12-01T14:20:02Z<p>About it being faster/better memory:</p>
<p>I looked into this issue with Java, I assume .NET would be as smart about it.</p>
<p>The implementation for String is pretty impressive.</p>
<p>The String object tracks "length" and "shared" (independent of the length of the array that holds the string)</p>
<p>So something like</p>
<p>String a="abc" + "def" + "ghi";</p>
<p>can be implemented (by the compiler/runtime) as:</p>
<pre>
- Extend the array holding "abc" by 6 additional spaces.
- Copy def in right after abc
- copy ghi in after def.
- give a pointer to the "abc" string to a
- leave abc's length at 3, set a's length to 9
- set the shared flag in both.
</pre>
<p>Since most strings are short-lived, this makes for some VERY efficient code in many cases.
The case where it's absolutely NOT efficient is when you are adding to a string within a loop, or when your code is like this:</p>
<pre>
a="abc";
a=a+"def";
a+="ghi";
</pre>
<p>In this case, you are much better off using a StringBuilder construct.</p>
<p>My point is that you should be careful whenever you optimize, unless you are ABSOLUTELY sure that you know what you are doing, AND you are absolutely sure it's necessary, AND you test to ensure the optimized code makes a use case pass, just code it in the most readable way possible and don't try to out-think the compiler.</p>
<p>I wasted 3 days messing with strings, caching/reusing string-builders and testing speed before I looked at the string source code and figured out that the compiler was already doing it better than I possibly could for my use case. Then I had to explain how I didn't REALLY know what I was doing, I only thought I did...</p>
http://stackoverflow.com/questions/1823363/how-to-use-windows-7-jump-lists-in-a-java-desktop-app/1823514#18235141Answer by Bill K for How to use Windows 7 Jump Lists in a Java Desktop app?Bill K2009-12-01T01:36:48Z2009-12-01T01:36:48Z<p>This would break compatibility with other systems so Sun almost certainly won't do it.</p>
<p>There are a handful of desktop/toolbar integration libraries out there that make the jni calls for you, you might look for one of those that has been updated for windows 7, but if you are going to go single-platform, why not use C#? (Not that I'm a fan, I'm 100% Java, but if you're already breaking compatibility you might consider going all the way just for ease of programming)</p>
http://stackoverflow.com/questions/1823346/whats-the-limit-to-the-number-of-members-you-can-have-in-a-java-enum/1823505#1823505-2Answer by Bill K for What's the limit to the number of members you can have in a java enum?Bill K2009-12-01T01:33:23Z2009-12-01T01:33:23Z<p>This is an extension of the comments to the original question.</p>
<p>There are multiple problems with having a LOT of enums.</p>
<p>The main reason is that when you have a lot of data it tends to change, or if not you often want to add new items. There are exemptions to this like unit conversions that would never change, but for the most part you want to read data like this from a file into a collection of classes rather than an enum.</p>
<p>To add new items is problematic because since it's an enum, you need to physically modify your code unless you are ALWAYS using the enums as a collection, and if you are ALWAYS using them as a collection, why make them enums at all?</p>
<p>The case where your data doesn't change--like "conversion units" where you are converting feet, inches, etc. You COULD do this as enums and there WOULD be a lot of them, but by coding them as enums you lose the ability to have data drive your program. For instance, a user could select from a pull-down list populated by your "Units", but again, this is not an "ENUM" usage, it's using it as a collection.</p>
<p>The other problem will be repetition around the references to your enum. You will almost certainly have something very repetitive like:</p>
<pre><code>if(userSelectedCard() == cards.HEARTS)
graphic=loadFile("Heart.jpg");
if(userSelectedCard() == cards.SPADES)
graphic=loadFile("Spade.jpg");
</code></pre>
<p>Which is just wrong (If you can squint to where you can't read the letters and see this kind of pattern in your code, you KNOW you are doing it wrong). </p>
<p>If the cards were stored in a card collection, it would be easier to just use:</p>
<pre><code>graphic=cards.getGraphicFor(userSelectedCard());
</code></pre>
<p>I'm not saying that this can't be done with an enum as well, but I am saying that I can't see how you would use these as enums without having some nasty code-block like the one I posted above.</p>
<p>I'm also not saying that there aren't cases for enums--there are lots of them, but when you get more than a few (7 was a good number), you're probably better off with some other structure.</p>
<p>I guess the exception is when you are modeling real-world stuff that has that many types and each must be addressed with different code, but even then you are probably better off using a data file to bind a name to some code to run and storing them in a hash so you can invoke them with code like: hash.get(nameString).executeCode(). This way, again, your "nameString" is data and not hard-coded, allowing refactoring elsewhere.</p>
<p>If you get in the habit of brutally factoring your code like this, you can reduce many programs by 50% or more in size.</p>
http://stackoverflow.com/questions/1823117/for-each-and-pointers-in-java/1823126#18231261Answer by Bill K for For-Each and Pointers in JavaBill K2009-11-30T23:27:51Z2009-11-30T23:27:51Z<p>For-each doesn't give you an index pointer, so you just can't use it to change an immutable value.</p>
<p>Either use a for-loop with an index or use a mutable type (like StringBuffer, not String)</p>
http://stackoverflow.com/questions/1822687/c-3-0-tuple-equivalents-for-poor-men/1822783#18227830Answer by Bill K for C# 3.0 Tuple Equivalents (for poor men)Bill K2009-11-30T22:15:25Z2009-11-30T22:15:25Z<p>Since you asked for an opinion, mine would be to always create a type--I can't figure out a reason not to.</p>
<p>More often than not you can find that you actually needed the type (the main use is either to store two items in a collection or return two items from a method call--in both cases if the items aren't closely related, you're probably doing something wrong).</p>
http://stackoverflow.com/questions/1766896/beginner-object-references-question/1766984#17669840Answer by Bill K for Beginner object references questionBill K2009-11-19T22:19:44Z2009-11-19T22:19:44Z<p>There are a bunch of ways to do it (as pointed out by others). You really want to think about your object structure though...</p>
<p>Perhaps your main method shouldn't even be instantiating aRef, perhaps it should be instantiated inside xRef's constructor (this is the case where xRef tends to be a "part" of the functionality of aRef.</p>
<p>If aRef can have multiple instances at some point you may not want to store it off at all, you may want to pass it in whenever an xRef method uses it.</p>
<p>This is where you need to consider your object model at a business logic level. What are the relationships between the objects, etc.</p>
<p>(My guess is that you want xRef to instantiate aRef and keep the reference itself, then if your "main" really needed to talk with aRef it could either ask xRef to forward the message or ask xRef for it's instance of aRef.)</p>
http://stackoverflow.com/questions/1760103/benchmarking-desktop-applications/1761153#17611531Answer by Bill K for Benchmarking Desktop ApplicationsBill K2009-11-19T05:48:21Z2009-11-19T17:39:25Z<p>Your question is a little ambiguous. I think you are trying to say that you have one desktop app that has many external connections ("Users") using something else (Web browser?). </p>
<p>Otherwise you could mean that you have a desktop app that you are distributing to many users and it connects to a central server--but then what you really mean is that you want to test server performance so I'm guessing that's not it.</p>
<p>Anyway, if my first guess was right, this can be a kind of difficult program.</p>
<p>When I've had to do something like that, I wrote a program to simulate clients connecting and ran it on a different computer. This can work if your data is fairly simple.</p>
<p>If my guess is correct I might be able to offer you a few more tips--maybe if you posted a little more info</p>
<p>---------------------- Edit after comment</p>
<p>What I would do is try to come up with a minimal constant xml message you could send (like the one that you posted) then write a program to open a socket, send the xml and close it. You may have to handle the server response.</p>
<p>I've done this before, it might take a couple days to write a program to do it--the problem can be emulating multiple machines. I'd just try opening multiple connections from a single machine first and if that works you're good to go.</p>
<p>If not (Sometimes each "client" needs a different IP address) you can use Linux (this can't be done easily on windows) set up to act as though one box has different IP addresses. I think you even supply the IP address in your program as you are opening the port, but it's been a few years so this is a little wishy-washy.</p>
<p>Solution #2 (Mentally easier but manually intensive):</p>
<p>If you have a bunch of clients sitting around, you can drive your program with an interesting tool called "AutoHotKey". It's a hacky tool but it's awesome for driving GUI programs. You could record a single AHK script that loops and causes some action on the server, copy it to all the computers and start it running on each one.</p>
<p>There are also a bunch of Very Expensive Tools designed to manage this kind of test. You are getting into an area that I'd call one of the more challenging areas that professional QA people typically encounter.</p>
<p>If you get this to work, however you solve it, put it on your resume.</p>
http://stackoverflow.com/questions/1732366/how-do-i-avoid-checking-in-local-changes-to-the-svn-repository6How do I avoid checking in local changes to the SVN repository?Bill K2009-11-13T22:42:55Z2009-11-13T23:18:44Z
<p>I have to make local changes to my project files in order to get it to run in a different environment. Twice now I accidentally checked those changes in (and messed up everyone else's running environment).</p>
<p>There are probably a lot of better ways to set up our build, but since I work as a consultant on an established project I can't really change how the customer works.</p>
<p>I've tried setting up a second branch in the same repository (which backfired, duplicating the entire tree in the root of their repository--I won't be messing around with that again).</p>
<p>Tried setting up a second repository of my own and checking in JUST those files to the new repository. This got really messy as well and basically didn't work.</p>
<p>I'm considering SVK--it looks like it MIGHT be able to help, but I can't quite figure out a pattern that would work.</p>
<p>I think I even posted here and didn't get a good answer, but that was before I was seriously considering SVK--I figured with that new parameter there might be a better solution.</p>
<p>I realize I could track the changes I WANT to check in and then just check those in, but that's a human dependent and buggy procedure that, to date, has failed me twice (because I'm a buggy human).</p>
<p>Any suggestions on just how to do this?</p>
http://stackoverflow.com/questions/1731438/do-good-tests-enable-sloppy-coding/1731475#17314750Answer by Bill K for Do good tests enable sloppy coding?Bill K2009-11-13T19:47:49Z2009-11-13T19:47:49Z<p>If you have a set of logic copied in two places in your code (IMO the worst thing a developer can do), then you probably have inconsistent tests as well.</p>
<p>The most important job any programmer can do is ruthlessly refactor the code, removing ALL duplication. This almost always shows benefits on even a single iteration.</p>
<p>Why would you think if you had an error in copied code in 2 places that your tests would be any better?</p>
http://stackoverflow.com/questions/1712233/converting-java-collection-of-some-class-to-collection-of-string/1712432#17124320Answer by Bill K for Converting Java Collection of some class to Collection of StringBill K2009-11-11T01:29:11Z2009-11-11T01:29:11Z<p>Try:</p>
<pre><code>public ArrayList<String> convert(ArrayList<URI> source) {
ArrayList<String> dest=new ArrayList<String>();
for(URI uri : source)
dest.add(source.toString());
return dest;
}
</code></pre>
<p>Seriously, would a built-in API offer a lot to that?</p>
<p>Also, not very OO. the URI array should probably be wrapped in a class. The class might have a .asStrings() method.</p>
<p>Furthermore you'll probably find that you don't even need (or even want) the String collection version if you write your URI class correctly. You may just want a getAsString(int index) method, or a getStringIterator() method on your URI class, then you can pass your URI class in to whatever method you were going to pass your string collection to.</p>
http://stackoverflow.com/questions/1710914/removing-access-to-system-out-in-java/1711166#17111661Answer by Bill K for Removing access to System.out in javaBill K2009-11-10T21:04:01Z2009-11-10T21:04:01Z<p>You can actually get and store System.out/err before replacing them.</p>
<pre><code>OutputStream out=System.getOut(); // I think the names are right
System.setOut(some predefined output stream, null won't work);
out.println("Hey, this still goes to the output");
System.out.println("Oh noes, this does not");
</code></pre>
<p>I've used this to intercept all the System.out.println's in the codebase and prefix each line of output with the method name/line number it came from.</p>
http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices23Your personal, successful coding practices.Bill K2008-11-19T19:15:26Z2009-11-08T18:09:48Z
<p>I've been thinking lately about a few practices that I have kind of adopted. Not things you see listed all the times, but patterns that you've looked back and said "I'm glad I did that", then adopted for yourself.</p>
<p>I'm not really thinking of the ones you hear all the time, like "Refactoring" or any design patterns listed in common books either, but would include specific refactoring patterns that you find success with but don't hear about very often...</p>
http://stackoverflow.com/questions/1680189/getters-on-an-immutable-type/1682347#16823470Answer by Bill K for Getters on an immutable typeBill K2009-11-05T17:49:21Z2009-11-05T17:49:21Z<p>It's a good idea to use get--never mandatory, but people will automatically know what it's for.</p>
<p>Get does not imply that you have that as a member variable, in fact it's supposed to hide that fact. It can easily be giving access to a computed value. </p>
<p>size(), length(), etc were created before Borland found they needed the get/set concept to implement their GUI builder (I'm not sure exactly who came up with the idea, but that was the reason).</p>
<p>intValue, doubleValue etc are not getters, they are converters and therefore are named differently. </p>
<p>Now, all that said, if you really want to use x or getX it is your choice. getters and setters are no longer needed for most decent toolsets, they will use annotations instead--just be ready for a few people to take a few extra seconds typing "get" followed by "ctrl-space" and not finding what they are after.</p>
http://stackoverflow.com/questions/1677037/how-can-i-reference-my-java-enum-without-specifying-its-type1How can I reference my Java Enum without specifying its type.Bill K2009-11-04T22:13:03Z2009-11-04T22:54:39Z
<p>I have a class that defines its own enum like this:</p>
<pre><code>public class Test
{
enum MyEnum{E1, E2};
public static void aTestMethod() {
Test2(E1); // << Gives "E1 cannot be resolved" in eclipse.
}
public Test2(MyEnum e) {}
}
</code></pre>
<p>If I specify MyEnum.E1 it works fine, but I'd really just like to have it as "E1". Any idea how I can accomplish this, or does it have to be defined in another file for this to work?</p>
<p>CONCLUSION:
I hadn't been able to get the syntax for the import correct. Since several answers suggested this was possible, I'm going to select the one that gave me the syntax I needed and upvote the others.</p>
<p>By the way, a REALLY STRANGE part of this (before I got the static import to work), a switch statement I'd written that used the enum did not allow the enum to be prefixed by its type--all the rest of the code required it. Hurt my head.</p>
http://stackoverflow.com/questions/1669689/pre-java-5-collections-and-the-unwillingness-to-change/1669883#16698830Answer by Bill K for Pre Java 5 collections and the unwillingness to changeBill K2009-11-03T20:17:47Z2009-11-03T20:17:47Z<p>(This is relevant to your question, give it a sec)</p>
<p>If you look through the Javadocs, you will never (correct me if I'm wrong) find a method outside Util that takes or returns a collection.</p>
<p>At first I couldn't understand this--they must use collections all over.</p>
<p>The thing is, a collection makes a LOUSY api. It's unsafe (how do you guarantee that other threads aren't changing it? How do you ensure that nobody deletes a key element? How do you ensure that it is kept in sync with other collections/data/...?)</p>
<p>Also, note that what you wrote is a utility function, not a method (it references no member variables). It is not OO. That happens a lot when you pass collections and it's generally a good indication of poor OO design (the method is in the wrong class).</p>
<p>If you passed your result set to the constructor of an object that contained your collection, you would have much more control over the situation--you would also find that many other utility functions actually belong in that class.</p>
<p>The thing with generics is that once your collections are contained in a fairly restricted class, they are fun but no where near as important--still useful of course.</p>
<p>If you were going to go so far as to refactor your collection to use Generics, you might consider going all the way and making an object that contains it as well. </p>
<p>The refactor to generics itself then becomes really easy--pretty much free. Without it generics is pretty much just a band-aid that leaves huge gaping holes in your design/safety anyway.</p>
http://stackoverflow.com/questions/1610068/why-do-floats-having-trailing-0-when-it-is-exactly-an-integer/1610199#16101990Answer by Bill K for Why do floats having trailing .0 when it is exactly an integer?Bill K2009-10-22T21:54:32Z2009-10-22T21:54:32Z<p>toString is a very special method. It does not mean "User display string" by any stretch of the imagination (although it often happens to coincide, as with "String's" toString method)</p>
<p>It's actually for developers to be able to instantly grok what an object is (primarily as a debug output).</p>
<p>For anything to be printed out by a user, it should rendered through a formatter anyway to ensure correct max size, number of decimal points, and decimal indicator (. or ,).</p>
<p>In Java code, 0.0 is automatically cast to a double, so it makes perfect sense that a double would print as 0.0--it means "this is a double". I'm a little surprised it doesn't end with an "f" or "d", but that would actually be really annoying because the toString for int's is really really useful and to constantly follow it with an "i" would have pissed everyone off.</p>
http://stackoverflow.com/questions/1608816/static-access-to-hashmap-array/1608886#16088860Answer by Bill K for Static Access to HashMap/Array?Bill K2009-10-22T17:51:51Z2009-10-22T17:51:51Z<p>Sometimes the problem scope defined can be too narrow to come up with a good optimization.</p>
<p>If your problem is that you NEED to move those items from the passed in hash map to an array, it's not going to get too much more efficient (although you probably want to start with an array like this: new String[] {"ADDED_SUGARS_FREE_FLAG", "EGG_FREE_FLAG", ...} and iterate over it so you don't have all those duplicated lines.</p>
<p>So to get a better optimization you might have to zoom out a level or two. Why are you storing them in an array, couldn't you just copy the user hashmap in part or in whole? Can the user hashmap be made immutable so you could just make a pointer copy of it and not even bother with extracting value?</p>
<p>Or better yet, can you wrap HashMapSupport with a more intelligent collection that solves the problems of all classes using it.</p>
<p>I can't really answer any of these without knowing a lot more about your code, but that's the kind of stuff I'd be looking at.</p>
<p>After your edit:
You already changed the problem a bit. What you now have is equivalent to:</p>
<pre><code>return new String[]{"w", "x", "y", ...}
</code></pre>
<p>Are you sure you didn't simplify out part of the problem?</p>
http://stackoverflow.com/questions/1597509/what-is-a-good-emeddable-language-for-an-existing-java-application/1597625#15976251Answer by Bill K for What is a good emeddable language for an existing Java application?Bill K2009-10-20T22:11:22Z2009-10-20T22:11:22Z<p>If you want a DSL, then you don't really want to embed an existing language, you want to create a "Domain Specific Language". To me that means a lot more than just changing some keywords and not using parenthesizes. </p>
<p>For instance, right now I'm working on TV Scheduling right now. When we create fake guide data for a test, we always add a comment that looks like this (cut directly out of the test I'm working on):</p>
<pre><code> * TIME:8.....30....9.....30....10....30....11....30....12....30....
* 4FOX:____________[Spotlight.............][Jeopardy..]____________
* 6CBS:[Heroes....][Heroes....][Heroes....]________________________
* 8HMK:xx[A.River.Runs.Through.It....][Blades.Of.Glory...]_________
</code></pre>
<p>If I have to create more guide data, I'll directly interpret those comments as a DSL (Making them a long string or string array instead of comments).</p>
<p>That would be an appropriate DSL.</p>
<p>If you're just after embedding a flexible language, Groovy or JRuby are both made for this, as is BeanShell.</p>
<p>There is, in fact, an entire API built around replaceable plug-in scripting languages so that you should be able to drop in any JVM language you want and not change your code a bit.</p>
http://stackoverflow.com/questions/1595965/java-packages-autoimports/1596130#15961300Answer by Bill K for Java packages autoimportsBill K2009-10-20T17:27:22Z2009-10-20T17:27:22Z<p>What you are asking for is a tool that will modify your source code outside of the IDE. That's really not a good idea--codegen always ends up sucking, no matter how cool and limited it seems at first.</p>
<p>The only decent case for code generation is where the programmer NEVER sees the intermediate version--this happens with C preprocessor--it makes an intermediate pre-processed version that you never see.</p>
<p>That said, what you might want is something like Groovy. IIRC, groovy allows something like "import *" for import everything.</p>
<p>The thing is, Java is more of a professional tool--you really don't WANT it doing tricky things. Many Java programmers don't even like "import java.util.*" and insist on expanding the exact imports so that you know exactly where each class is coming from.</p>
<p>With lighter languages like groovy, ruby, etc this isn't really as much of a problem--being terse is more important.</p>
<p>PS. If you have to use Java, honestly the answer is no, there is no good solution outside the development environment GUI. Embrace your GUI.</p>
http://stackoverflow.com/questions/1579054/best-source-control-for-us-to-useand-how-to-convince-people-of-it/1579654#15796540Answer by Bill K for Best source control for us to use(and how to convince people of it?)Bill K2009-10-16T18:33:21Z2009-10-16T18:33:21Z<p>My argument would be to start with SVN. It's not like it has to be a lifetime commitment since it's free--if it really doesn't suite your needs just switch. </p>
<p>You are more likely to find people familiar with SVN these days and almost anyone is able to manage it.</p>
<p>I've had teammates bitch about EVERY version control system. I hear less about SVN than the others. I hear MORE bitching about the big old ones like VSS and P4.</p>
<p>I've used just about all of them, and I've never had a real complaint about svn. Small projects, large projects--it even scales directly to a distributed version control system.</p>
http://stackoverflow.com/questions/562273/what-output-and-recording-ports-does-the-java-sound-api-find-on-your-computer/562393#5623933Answer by Bill K for What output and recording ports does the Java Sound API find on your computer?Bill K2009-02-18T19:02:21Z2009-10-11T19:48:27Z<p>I've never messed with the sound API--this is a good thing to have seen. Thanks.</p>
<p>From a <a href="http://en.wikipedia.org/wiki/Dell" rel="nofollow">Dell</a> laptop:</p>
<pre><code>Mixer: Direct Audio Device: DirectSound Playback [Primary Sound Driver]
Mixer: Direct Audio Device: DirectSound Playback [SigmaTel Audio]
Mixer: Direct Audio Device: DirectSound Capture [Primary Sound Capture Driver]
Mixer: Direct Audio Device: DirectSound Capture [SigmaTel Audio]
Mixer: Software mixer and synthesizer [Java Sound Audio Engine]
Mixer: Port Mixer [Port SigmaTel Audio]
Source Port: Stereo Mix source port
Control: Stereo Mix (compound - values below)
Control: Select (boolean)
Control: Volume (float: from 0.0 to 1.0)
Control: Balance (float: from -1.0 to 1.0)
Source Port: LINE_IN source port
Control: Line In (compound - values below)
Control: Select (boolean)
Control: Volume (float: from 0.0 to 1.0)
Control: Balance (float: from -1.0 to 1.0)
Source Port: MICROPHONE source port
Control: Microphone (compound - values below)
Control: Select (boolean)
Control: Microphone Boost (boolean)
Control: Volume (float: from 0.0 to 1.0)
Source Port: MICROPHONE source port
Control: Microphone (compound - values below)
Control: Select (boolean)
Control: Microphone Boost (boolean)
Control: Volume (float: from 0.0 to 1.0)
Target Port: SPEAKER target port
Control: Volume (float: from 0.0 to 1.0)
Control: Balance (float: from -1.0 to 1.0)
Control: Mute (boolean)
Control: PC Spk Mute (boolean)
Control: SPDIF Interface (boolean)
Control: Wave (compound - values below)
Control: Volume (float: from 0.0 to 1.0)
Control: Balance (float: from -1.0 to 1.0)
Control: Mute (boolean)
Control: SW Synth (compound - values below)
Control: Volume (float: from 0.0 to 1.0)
Control: Balance (float: from -1.0 to 1.0)
Control: Mute (boolean)
Control: CD Player (compound - values below)
Control: Volume (float: from 0.0 to 1.0)
Control: Balance (float: from -1.0 to 1.0)
Control: Mute (boolean)
Control: PC Speaker (compound - values below)
Control: Volume (float: from 0.0 to 1.0)
Control: Mute (boolean)
</code></pre>
http://stackoverflow.com/questions/1540000/java-unsigned-numbers/1540154#15401541Answer by Bill K for Java: Unsigned numbersBill K2009-10-08T20:17:29Z2009-10-08T20:17:29Z<p>Internally, you shouldn't be using the smaller values--just use int. As I understand it, using smaller units does nothing but slow things down. It doesn't save memory because internally Java uses the system's word size for all storage (it won't pack words).</p>
<p>However if you use a smaller size storage unit, it has to mask them or range check or something for every operation.</p>
<p>ever notice that char (any operation) char yields an int? They just really don't expect you to use these other types.</p>
<p>The exceptions are arrays (which I believe will get packed) and I/O where you might find using a smaller type useful... but masking will work as well.</p>
http://stackoverflow.com/questions/1526596/memory-overhead-of-java-hashmap-compared-to-arraylist/1527008#15270084Answer by Bill K for Memory overhead of Java HashMap compared to ArrayListBill K2009-10-06T17:36:04Z2009-10-06T17:36:04Z<p>All that is stored in either is pointers. Depending on your architecture a pointer should be 32 or 64 bits (or more or less)</p>
<p>An array list of 10 tends to allocate 10 "Pointers" at a minimum (and also some one-time overhead stuff).</p>
<p>A map has to allocate twice that (20 pointers) because it stores two values at a time. Then on top of that, it has to store the "Hash". which should be bigger than the map, at a loading of 75% it SHOULD be around 13 32-bit values (hashes).</p>
<p>so if you want an offhand answer, the ratio should be about 1:3.25 or so, but you are only talking pointer storage--very small unless you are storing a massive number of objects--and if so, the utility of being able to reference instantly (HashMap) vs iterate (array) should be MUCH more significant than the memory size.</p>
<p>Oh, also:
Arrays can be fit to the exact size of your collection. HashMaps can as well if you specify the size, but if it "Grows" beyond that size, it will re-allocate a larger array and not use some of it, so there can be a little waste there as well.</p>
http://stackoverflow.com/questions/1522108/getting-index-number-in-java/1522317#15223171Answer by Bill K for Getting index number in JavaBill K2009-10-05T20:49:20Z2009-10-05T23:30:32Z<p>Very Heavily Edited. I think either you want this:</p>
<pre><code>class CharStorage {
/** set offset to 1 if you want b=1, o=2, y=3 instead of b=0... */
private final int offset=0;
private int array[]=new int[26];
/** Call this with up to 26 characters to initialize the array. For
* instance, if you pass "boy" it will init to b=0,o=1,y=2.
*/
void init(String s) {
for(int i=0;i<s.length;i++)
store(s.charAt(i)-'a' + offset,i);
}
void store(char ch, int value) {
if(ch < 'a' || ch > 'z') throw new IllegalArgumentException();
array[ch-'a']=value;
}
int get(char ch) {
if(ch < 'a' || ch > 'z') throw new IllegalArgumentException();
return array[ch-'a'];
}
}
</code></pre>
<p>(Note that you may have to adjust the init method if you want to use 1-26 instead of 0-25)</p>
<p>or you want this:</p>
<pre><code>int getLetterPossitionInAlphabet(char c) {
return c - 'a' + 1
}
</code></pre>
<p>The second is if you always want a=1, z=26. The first will let you put in a string like "qwerty" and assign q=0, w=1, e=2, r=3...</p>
http://stackoverflow.com/questions/1848426/caveats-to-watch-for-in-transition-from-sun-jvm-to-jrockitComment by Bill K on Caveats to watch for in transition from Sun JVM to JRockit?Bill K2009-12-04T17:59:14Z2009-12-04T17:59:14ZAfter a few jumps from searching for JRockit I ended up here: <a href="http://www.shudo.net/jit/perf/" rel="nofollow">shudo.net/jit/perf</a> 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..http://stackoverflow.com/questions/1843905/clean-up-code-in-finalize-or-finally/1844020#1844020Comment by Bill K on Clean up code in finalize() or finally()?Bill K2009-12-04T17:50:22Z2009-12-04T17:50:22ZI 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.http://stackoverflow.com/questions/1843905/clean-up-code-in-finalize-or-finally/1843916#1843916Comment by Bill K on Clean up code in finalize() or finally()?Bill K2009-12-04T00:25:55Z2009-12-04T00:25:55Zfinally 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?http://stackoverflow.com/questions/1836164/override-fillinstacktrace-for-control-flow-performance/1836231#1836231Comment by Bill K on Override fillInStackTrace for control flow / performance.Bill K2009-12-03T17:51:56Z2009-12-03T17:51:56ZThe 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)http://stackoverflow.com/questions/1760103/benchmarking-desktop-applications/1761153#1761153Comment by Bill K on Benchmarking Desktop ApplicationsBill K2009-12-03T17:46:31Z2009-12-03T17:46:31ZAwesome--glad I could help.http://stackoverflow.com/questions/1830179/what-is-the-overhead-of-a-method-call-in-a-good-java-vm/1830204#1830204Comment by Bill K on What is the overhead of a method call in a good Java VM?Bill K2009-12-02T18:05:21Z2009-12-02T18:05:21ZI'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!http://stackoverflow.com/questions/1829842/which-is-more-secure-or-more-used-net-or-j2ee/1829860#1829860Comment by Bill K on Which is more secure or more used .net or J2EE?Bill K2009-12-02T01:50:36Z2009-12-02T01:50:36ZI 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)http://stackoverflow.com/questions/1823346/whats-the-limit-to-the-number-of-members-you-can-have-in-a-java-enumComment by Bill K on What's the limit to the number of members you can have in a java enum?Bill K2009-12-01T22:53:37Z2009-12-01T22:53:37Z+1 Software Monkey, but I still want to see an example of a 50 state enum so I can factor the hell out of it...http://stackoverflow.com/questions/1823363/how-to-use-windows-7-jump-lists-in-a-java-desktop-app/1823514#1823514Comment by Bill K on How to use Windows 7 Jump Lists in a Java Desktop app?Bill K2009-12-01T21:10:43Z2009-12-01T21:10:43ZGood points, then I guess you are already used to some level of desktop integration--I'd just look at existing products or possibly even find an open source one and extend it yourself--they are all going to do the same thing (JNI call) anyway.http://stackoverflow.com/questions/1823346/whats-the-limit-to-the-number-of-members-you-can-have-in-a-java-enumComment by Bill K on What's the limit to the number of members you can have in a java enum?Bill K2009-12-01T20:59:33Z2009-12-01T20:59:33Z(And why so many coders have trouble seeing this confounds me to no end--Seems pretty obvious to me and anyone who laid down a problem using both coding styles.) If you care to show me an example of how enums are used with the states (As enums, in other words, using State.CALIFORNIA in your code), I'll show you how to fix it without enums and reduce your code by approximately 95%.http://stackoverflow.com/questions/1823346/whats-the-limit-to-the-number-of-members-you-can-have-in-a-java-enumComment by Bill K on What's the limit to the number of members you can have in a java enum?Bill K2009-12-01T20:56:04Z2009-12-01T20:56:04Z@jasonS, why would you make those enums??? It would be horrible to be referencing ALABAMA directly in your code, you'd have to hard-code 50 cases then! It would also keep you from seeing some awesome refactorings that you could do if it were a collection instead. You've pointed out the EXACT problem.http://stackoverflow.com/questions/1823346/whats-the-limit-to-the-number-of-members-you-can-have-in-a-java-enum/1823505#1823505Comment by Bill K on What's the limit to the number of members you can have in a java enum?Bill K2009-12-01T20:54:21Z2009-12-01T20:54:21ZOh and @Adrian, you are absolutely right, but if you do use it correctly like that, when do you actually ever use the fact that it is an enum? Pretty much never, so why make it an enum (where you have to define it in code) instead of an object collection where you can abstract out the data from your code?http://stackoverflow.com/questions/1823346/whats-the-limit-to-the-number-of-members-you-can-have-in-a-java-enum/1823505#1823505Comment by Bill K on What's the limit to the number of members you can have in a java enum?Bill K2009-12-01T20:52:57Z2009-12-01T20:52:57ZThat's why nameString shouldn't be in quotes--that should be data as well. You should be iterating over a dataset with NO unique data in your code. I'm surprised at how many people don't really get factoring.http://stackoverflow.com/questions/1823346/whats-the-limit-to-the-number-of-members-you-can-have-in-a-java-enumComment by Bill K on What's the limit to the number of members you can have in a java enum?Bill K2009-12-01T01:12:29Z2009-12-01T01:12:29Z@S.Lott is right. If you have more than 7, it should be accessed as data, not code. You shouldn't be using enums, you should be using a collection of objects that can be looked up by passing a string (Not a hard-coded string either). Doing it as enums will lead to some heavily repetitious code. Look at where you use these enums for evidence of this.http://stackoverflow.com/questions/1822549/calling-java-library-from-objective-c-on-mac/1822591#1822591Comment by Bill K on Calling Java library from Objective C on MacBill K2009-11-30T22:22:03Z2009-11-30T22:22:03ZThere is no reason your Objective-C app could not start the Java app as an application whenever necessary (Like starting any other binary). You could then use sockets to communicate with it. You might even implement an "End" command to have it terminate itself when you are done, that way it's only running when you need it. You will have to delay a few seconds before you connect to it, java is pretty slow to start apps.