User sk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T08:05:27Zhttp://stackoverflow.com/feeds/user/16399http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/663079/does-cloning-provide-a-performance-improvement-over-constructors-factory-methods6Does cloning provide a performance improvement over constructors/factory methods?sk2009-03-19T17:07:38Z2009-11-11T19:50:59Z
<p>I'm maintaing an older Java code base (jvm 1.4) that seems to use cloning as an alternative to object instantiation, I'm guessing as a performance optimization. Here's a contrived example:</p>
<pre><code>public class Foo {
private SomeObject obj; // SomeObject implements Cloneable
public Foo() {
obj = new SomeObject();
obj.setField1("abc"); // these fields will have the same value every time
obj.setField2("def");
}
public void doStuff() {
SomeObject newObj = obj.clone(); // clone it instead of using a factory method
// do stuff with newObj
}
}
</code></pre>
<p>The usual caveats about premature optimization notwithstanding, was this actually a recommended idiom at some point?</p>
http://stackoverflow.com/questions/1342350/creating-strings-from-bytes-ints-in-java/1342374#13423743Answer by sk for Creating Strings from Bytes/Ints in Javask2009-08-27T16:57:26Z2009-08-27T16:57:26Z<p>You are testing to see if those are the same object, not if they are equal strings.</p>
<p>However the following test will be true:</p>
<pre><code>test.intern() == compare.intern()
</code></pre>
http://stackoverflow.com/questions/142695/high-level-languages-for-out-of-the-box-gui-desktop-application-programming/142956#1429563Answer by sk for High-level languages for out-of-the-box GUI desktop application programmingsk2008-09-27T04:07:31Z2009-08-25T17:44:49Z<p>Tcl/tk is an old-school solution but you can get a gui up and running with surprisingly little code. The runtime can be embedded, so you can distribute a self-contained executable in a single file that contains your code, the runtime, and resource files. The runtime runs on unix/windows/mac so it's easy to generate binaries for whatever platforms you need. However many people find it hard to wrap their heads around tcl...</p>
http://stackoverflow.com/questions/1325075/how-do-i-set-the-timezone-in-tomcat-for-a-single-web-app2How do I set the timezone in Tomcat for a single web app?sk2009-08-24T22:14:37Z2009-08-25T06:54:02Z
<p>What is the best way to set the time zone in Tomcat for a single web app? I've seen options for changing the command-line parameters or environment variables for Tomcat, but is there a way to set it that is self-contained in the WAR file and not dependent on any Tomcat configuration?</p>
<p>Edit: to reemphasize, I'm looking for a solution that can be contained within a WAR file, not dependent on Tomcat configuration. To put it another way, can one web app be configured to have a different time zone than other apps running in the same Tomcat instance?</p>
http://stackoverflow.com/questions/1261497/java-6-source-backward-compatibility-and-sql/1261678#12616780Answer by sk for Java 6 Source backward-compatibility and SQLsk2009-08-11T16:59:43Z2009-08-11T16:59:43Z<p>Sun never guarantees source compatibility between releases, only binary compatibility. The most common example is that source code that contains 'assert' or 'enum' identifiers will not compile under JDK 1.4 (for assert) or 1.5+ (for enum), but existing .class files will still run under those newer JVMs.</p>
<p>You can try using the -source flag to compile older .java files under newer JVMs but you may still run into problems if you're relying on jvm classes that have changed.</p>
http://stackoverflow.com/questions/1070111/can-i-propagate-struts2-actionerrors-between-different-action-classes1Can I propagate struts2 ActionErrors between different action classes?sk2009-07-01T16:29:12Z2009-07-29T20:00:02Z
<p>If I have an action where the result is a redirectAction to another action in a different class, is it possible to get validation errors to display in the resulting action? E.g. in the following example, if a user executes actionA (which has no views associated with it), and there are errors, is there any way to display those errors in the actionB result (foo.jsp)? Or am I going about this in completely the wrong way? </p>
<pre><code><package name="a" extends="struts-default" namespace="/a">
<action name="actionA" class="actionAClass">
<result name="input" type="redirectAction">
<param name="actionName">actionB</param>
<param name="namespace">/b</param>
</result>
<result type="redirectAction">
<param name="actionName">actionB</param>
<param name="namespace">/b</param>
</result>
</action>
</package>
<package name="b" extends="struts-default" namespace="/b">
<action name="actionB" class="actionBClass">
<result>/foo.jsp</result>
</action>
</package>
</code></pre>
http://stackoverflow.com/questions/376955/would-you-not-hire-a-programmer-because-of-excessive-game-playing-outside-of-work6Would you not hire a programmer because of excessive game playing outside of work?sk2008-12-18T05:13:50Z2009-05-28T04:37:27Z
<p>Saw an article on this forum thread and wanted to get people's opinions here. Should hiring decisions be influenced by someone's game playing habits? Is this a fair reason to exclude someone from employment as a programmer? Do you feel that the concerns raised about productivity are valid?</p>
<p>See the original posting at <a href="http://forums.f13.net/index.php?topic=15577.0" rel="nofollow">http://forums.f13.net/index.php?topic=15577.0</a></p>
<blockquote>
<p>I met with a recruiter recently
(online media industry) and in
conversation I happened to mention I'd
spent way too much time in the early
2000s playing online games, which I
described as "the ones before World of
Warcraft" (I went nuts for EQ1, SWG
and the start of WoW, but since 2006 I
have only put a handful of days into
MMOG playing - as opposed to
discussing them - I've obsessed over
bicycles and cycling instead).</p>
<p>He replied that employers specifically
instruct him not to send them World of
Warcraft players. He said there is a
belief that WoW players cannot give
100% because their focus is elsewhere,
their sleeping patterns are often not
great, etc. I mentioned that some
people have written about MMOG
leadership experience as a career
positive or a way to learn project
management skills, and he shook his
head. He has been specifically asked
to avoid WoW players.</p>
</blockquote>
http://stackoverflow.com/questions/522260/checking-whether-all-enum-values-are-mapped1Checking whether all enum values are mapped?sk2009-02-06T21:30:43Z2009-05-14T13:20:02Z
<p>Is there a convenience method available in the java standard libraries to check whether all possible keys in an EnumMap are mapped to a value?</p>
<p>I can write my own method like:</p>
<pre><code>public static <T extends Enum<T>> boolean areAllValuesMapped(EnumMap<T, ?> map, Class<T> enumClass)
{
return map.keySet().equals(EnumSet.allOf(enumClass));
}
</code></pre>
<p>But then I'm repeating the Class parameter (already given in the EnumMap constructor) as well as creating throwaway KeySet and EnumSet objects. EnumMap should have enough information to do this efficiently as an internal operation.</p>
http://stackoverflow.com/questions/807053/cygwin-rsync/807065#8070653Answer by sk for cygwin + rsyncsk2009-04-30T14:02:30Z2009-04-30T14:02:30Z<p>You still need to install the rsync package. Run setup.exe again and go through the packages manually (it's probably in 'networking' or 'utilities').</p>
http://stackoverflow.com/questions/798389/python-tool-that-builds-a-dependency-diagram-for-methods-of-a-class/798776#7987760Answer by sk for Python tool that builds a dependency diagram for methods of a classsk2009-04-28T16:26:31Z2009-04-28T16:26:31Z<p>Have you tried <a href="http://pydev.sourceforge.net/" rel="nofollow">pydev</a>? It's a python extension for eclipse. I believe it allows you to use the "call hierarchy" feature of Eclipse to view a call graph for a given method. It's not quite what you want but maybe it's enough to get started.</p>
http://stackoverflow.com/questions/778334/memory-invasion/778343#7783434Answer by sk for Memory invasionsk2009-04-22T17:31:13Z2009-04-22T17:31:13Z<p>You're describing a <a href="http://en.wikipedia.org/wiki/Buffer%5Foverflow" rel="nofollow">buffer overflow</a>, and yes, they are a large source of security problems in software. If someone can overrwrite program code with arbitrary data, and that arbitrary data contains executable code of the attacker's choice, then they can essentially execute machine code with the priviledge level of the program in which the overflow occurred.</p>
<p>This problem usually happens when a fixed amount of storage is allocated for an unknown amount of input (from keyboard, network, API call, etc.), and the amount of input turns out to be larger than the size of the storage. In programming languages that do not perform bounds checking on array accesses, this can result in executable areas of code being overwritten. Technologies like <a href="http://en.wikipedia.org/wiki/Data%5FExecution%5FPrevention" rel="nofollow">DEP</a> can mitigate this risk by write-protecting executable areas of memory.</p>
http://stackoverflow.com/questions/774177/serialization-of-objects/774182#7741820Answer by sk for Serialization of Objectssk2009-04-21T19:23:52Z2009-04-21T19:23:52Z<p>Are you talking about Java? If so, serialization is an extralingual object creation mechanism. It's a backdoor that uses native code to create the object without calling any constructors. Therefore, when designing a class for serializability, you need to make sure that a class created through deserialization maintains the same invariants (key fields being initialized) as you would through the constructor path. A third way to create objects in Java is through cloning, and similar issues apply.</p>
<p>Cloning and serialization don't interact well with the use of final fields if you need to set the value of that field to something different than what is returned by clone or the deserialization process.</p>
<p>Josh Bloch's "Effective Java" has some chapters that explain these issues in more depth.</p>
<p>(this answer may apply to other languages too, but I've only used serialization in Java)</p>
http://stackoverflow.com/questions/773054/accents-in-file-name-using-java-on-solaris/773073#7730733Answer by sk for Accents in file name using Java on Solarissk2009-04-21T15:09:22Z2009-04-21T15:11:33Z<p>Do you get the same problem if you use unicode literals (\uXXXX) instead of having unicode in the actual source file?</p>
<p>Does the filesystem definitely support UTF-8 file names? Does the tool you're using to view the file on the filesystem (ls?) support them?</p>
http://stackoverflow.com/questions/748155/adjacency-tree-from-single-table/748341#7483410Answer by sk for Adjacency tree from single tablesk2009-04-14T16:18:36Z2009-04-14T16:18:36Z<p>Where is $page coming from? You might have an sql injection vulnerability in your code if you're not escaping it or using a prepared statement.</p>
<p>Also the SELECT statement inside a for loop jumps out as a bad practice. If the table is not that big, then select the contents of the entire table and then iterate through the result set in PHP to build the tree data structure. This could take up to n*(n-1)/2 iterations in the pathological case of your tree being a linked list. Stop when all nodes have been added to the tree, or the number of remaining nodes remains the same from one iteration to the next - this means the remaining nodes are not children of your root node.</p>
<p>Alternatively, if your database supports recursive SQL queries, you can use that, and it will only select the nodes that are children of your parent node. You will still have to build the tree object yourself in PHP. The form of the query would be something like:</p>
<pre><code>WITH temptable(id, title, parent_id) AS (
SELECT id, title, parent_id FROM pages WHERE id = ?
UNION ALL
SELECT a.id, a.title, a.parent_id FROM pages a, temptable t
WHERE t.parent_id = a.id
) SELECT * FROM temptable
</code></pre>
<p>Substitute the '?' on the second line with the starting page ID.</p>
http://stackoverflow.com/questions/747539/is-there-java-library-or-framework-for-accessing-serial-ports/747794#7477940Answer by sk for Is there Java library or framework for accessing Serial ports?sk2009-04-14T14:17:55Z2009-04-14T14:17:55Z<p>Similar question:
<a href="http://stackoverflow.com/questions/264469/java-rs-232-communication-on-windows">http://stackoverflow.com/questions/264469/java-rs-232-communication-on-windows</a></p>
http://stackoverflow.com/questions/747765/how-to-find-appropriate-person-for-api-feature-review/747780#7477801Answer by sk for How to find appropriate person for API feature review?sk2009-04-14T14:14:21Z2009-04-14T14:14:21Z<p>Get someone who's not experienced with your product to make some sample code or a reference implementation of a client for your API. Then they'll get a good sense of where the documentation is deficient or the API needs to be improved. This can be a contractor, or a new developer (good way to get them up to speed).</p>
http://stackoverflow.com/questions/745390/does-setting-the-max-memory-of-a-java-program-affect-the-gc/745400#7454004Answer by sk for Does setting the max memory of a Java program affect the GC?sk2009-04-13T21:04:57Z2009-04-13T21:17:49Z<p>The general answer is that garbage will tend to be collected less often but the GC pauses will tend to be longer. </p>
<p>This is assuming you already have more memory available to the VM than your working set size; otherwise you might be spending a lot of time in garbage collection.</p>
<p>The GC characteristics vary greatly depending on which collector you are using and which version of Java, and whether you specified a higher -Xms in addition to the higher -Xmx. Older versions of Java (before 5) did not resize the young generation space after the VM had initialized. So even if you specified a really large -Xmx value, the size of the young generation would still be really small so you would see frequent young generation collections.</p>
<p>When a young generation collection occurs, there will be some "young" objects that will be promoted to the tenured space anyway, even though they are short-lived objects. This means that the tenured generation will slowly fill up with dead young objects, requiring periodic full GCs. The number of such objects that end up in the tenured generation is proportional to the number of young GCs (assuming constant activity in your program). So the advantage of a larger young generation is that there will be fewer young generation GCs, and therefore fewer objects from the young collection will be promoted to the tenured generation.</p>
<p>There are a number of tuning parameters besides -Xmx (google for java gc), and you will have to experiment with them since the optimal settings will vary for each application.</p>
http://stackoverflow.com/questions/686415/purpose-of-empty-synchronized-block-in-java10Purpose of empty synchronized block in Java?sk2009-03-26T16:05:52Z2009-03-30T06:45:01Z
<p>I was looking through a <a href="http://findbugs.sourceforge.net/" rel="nofollow">Findbugs</a> report on my code base and one of the patterns that was triggered was for an empty <code>synchronzied</code> block (i.e. <code>synchronized (var) {}</code>). The <a href="http://findbugs.sourceforge.net/bugDescriptions.html#ESync%5FEMPTY%5FSYNC" rel="nofollow">documentation says</a>:</p>
<blockquote>
<p>Empty synchronized blocks are far more
subtle and hard to use correctly than
most people recognize, and empty
synchronized blocks are almost never a
better solution than less contrived
solutions.</p>
</blockquote>
<p>In my case it occurred because the contents of the block had been commented out, but the <code>synchronized</code> statement was still there. In what situations could an empty <code>synchronized</code> block achieve correct threading semantics?</p>
http://stackoverflow.com/questions/674722/struggling-with-c-coming-from-object-oriented-land/674848#6748488Answer by sk for Struggling with C coming from Object Oriented land?sk2009-03-23T19:19:39Z2009-03-24T21:22:21Z<p>I would amend S. Lott's answer to use an <a href="http://en.wikipedia.org/wiki/Opaque%5Fpointer#C" rel="nofollow">opaque pointer</a> to perform data hiding of the members of the struct:</p>
<ol>
<li>Define your class however you want using normal OO design.</li>
<li>Member variables of your class go into a C language struct.</li>
<li>In the header file, you do not want to expose the member variables of your object (since these would be "private" in an OO language). Instead, use an opaque pointer, i.e.<br />
<code>typedef struct mystruct_s *mystruct_t; // first argument to all your methods</code></li>
<li>For all the methods you want to be "public", put their signatures in your .h file. Method bodies should go into the .c file, and "private" methods should be only defined in the .c file and also declared static so their symbols do not collide with symbols defined in other files.</li>
</ol>
<p>Clever naming conventions like underscores are unnecessary using this method, but it means that all your member variables will be private. Functions can be public or private, although public functions they are part of a global namespace so you might want to qualify their names with a "package" name like <code>mystruct_push()</code>, <code>mystruct_pop()</code>, etc.</p>
<p>You also need to make it clear if the caller or the library is responsible for calling <code>malloc()</code> and <code>free()</code>. Most likely you will have <code>mystruct_t *create()</code> and <code>void destroy(mystruct_t *target)</code> methods.</p>
http://stackoverflow.com/questions/220437/magic-quotes-in-php/220449#2204498Answer by sk for Magic quotes in PHPsk2008-10-21T00:57:28Z2009-03-19T17:15:34Z<p>Magic quotes are inherently broken. They were meant to sanitize input to the PHP script, but without knowing how that input will be used it's impossible to sanitize correctly. If anything, you're better off checking if magic quotes are enabled, then calling stripslashes() on $_GET/$_POST/$_COOKIES/$_REQUEST, and then sanitizing your variables at the point where you're using it somewhere. E.g. urlencode() if you're using it in a URL, htmlentities() if you're printing it back to a web page, or using your database driver's escaping function if you're storing it to a database. Note those input arrays could contain sub-arrays so you might need to write a function can recurse into the sub-arrays to strip those slashes too.</p>
<p>The PHP <a href="http://php.net/magic%5Fquotes" rel="nofollow">man page on magic quotes</a> agrees:</p>
<blockquote>
<p>"This feature has been DEPRECATED as
of PHP 5.3.0 and REMOVED as of PHP
6.0.0. Relying on this feature is highly discouraged. Magic Quotes is a
process that automagically escapes
incoming data to the PHP script. It's
preferred to code with magic quotes
off and to instead escape the data at
runtime, as needed."</p>
</blockquote>
http://stackoverflow.com/questions/538989/should-xsd-occurrence-bounds-be-on-the-sequence-or-the-element1Should XSD occurrence bounds be on the sequence or the element?sk2009-02-11T21:50:47Z2009-03-06T21:02:26Z
<p>If I have an element with one or more subelements, should the min/maxoccurs attributes be on the xsd:sequence element, the xsd:element, both, or neither?</p>
<pre><code><xsd:element name="books">
<xsd:complexType>
<xsd:sequence minOccurs="1" maxOccurs="unbounded"> <!-- here? -->
<xsd:element ref="book" minOccurs="1" maxOccurs="unbounded"/> <!-- or here? -->
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</code></pre>
http://stackoverflow.com/questions/383833/question-about-the-java-garbage-collector-nulls-and-memory-leaking/383836#38383616Answer by sk for Question about the Java Garbage Collector, nulls and memory leaking.sk2008-12-20T22:43:15Z2009-02-27T22:23:22Z<p>As long as no item in the queue is referenced anywhere else in your code, the garbage collector will be able to reclaim that memory. Setting pointers to null in Java is not the same as in C where setting a malloc'ed pointer to null prevents it from being freed. In Java, memory is reclaimed when it is no longer reachable. There are no memory leaks in Java (in the C/C++ sense), as long as you're not using native code via JNI.</p>
<p>A simplistic garbage collector would just count the number of references to an object and deallocate that object when the reference count reached zero, but that wouldn't be able to deal with reference cycles (A -> B, A -> B -> C -> A, etc.). The Java GC algorithms do a liveness test, where they construct a reference graph of all objects in the system. The GC does a graph traversal and any nodes (objects) that are not reachable are marked as unused and available for reallocation. The roots of the graph (starting ponts of the traversal) include variables on thread stacks, static variables, and references held by native code via JNI. See more here: <a href="http://java.sun.com/developer/Books/performance/performance2/appendixa.pdf" rel="nofollow">http://java.sun.com/developer/Books/performance/performance2/appendixa.pdf</a></p>
<p>It is still possible to have <em>reference leaks</em>. This refers to situations where you're holding on to a reference to an object longer than is needed. For example:</p>
<pre><code>public class Stack {
private final Object[] stack = new Object[10];
private int top = 0;
public void push(Object obj) {stack[top++] = obj;}
public Object pop() {return stack[top--]; }
}
</code></pre>
<p>Ignoring the overflow/underflow possibility, after you call Stack.pop(), the array member variable still has a reference to the object that was returned. It will prevent that object from being garbage collected until the surrounding Stack instance is no longer referenced. This is one of the rare instances where it is necessary to set a variable to null so that its memory can be reclaimed:</p>
<pre><code>public Object pop() {Object ret = stack[top]; stack[top--] = null; return ret;}
</code></pre>
http://stackoverflow.com/questions/538752/java-equivalent-of-register-int/538772#5387725Answer by sk for Java equivalent of register int?sk2009-02-11T21:01:25Z2009-02-12T23:42:14Z<p>There's no equivalent in Java. Even in C there is no guarantee that the variable will be stored in a register and compilers are free to ignore it.</p>
<p>In Java, the method will be interpreted until the hotspot JIT heuristically determines that it needs to be compiled. For compiled code it uses a coloring algorithm to assign variables and temporary values to registers, or write to/from RAM in the case of register overflow.</p>
http://stackoverflow.com/questions/400503/are-there-any-good-dragdrop-web-app-ides-out-there-that-support-ajax0Are there any good drag&drop web app IDEs out there that support AJAX?sk2008-12-30T15:08:53Z2009-02-03T23:22:28Z
<p>Can anyone recommend a GUI builder tool for creating DHTML web apps using AJAX to communicate with a web service backend? I'd like to avoid having to mess around with designing HTML, marshalling/unmarshalling data, checking for browser compatibility, etc. The tool should have a library of widgets that can be put into an application and hooked up to functionality, and be extensible enough to be able to define custom widgets. Of course free and/or open source is preferrable but I would consider proprietary tools too.</p>
<p>Also to what extent does the choice of GUI tool affect what platform or language I would use for the backend? If the GUI is just calling a web service then I should be able to use anything on the server-side to provide that interface but maybe some gui-side tools use a proprietary data exchange format that requires some specific server-side code?</p>
<p>Edit: I don't need a widget that can be dragged, I want an IDE that allows one to build a gui easily (i.e. a RAD tool).</p>
http://stackoverflow.com/questions/140030/possible-causes-of-java-vm-exceptionaccessviolation1Possible causes of Java VM EXCEPTION_ACCESS_VIOLATION?sk2008-09-26T14:56:36Z2009-01-27T04:46:14Z
<p>When a Java VM crashes with an EXCEPTION_ACCESS_VIOLATION and produces an hs_err_pidXXX.log file, what does that indicate? The error itself is basically a null pointer exception. Is it always caused by a bug in the JVM, or are there other causes like malfunctioning hardware or software conflicts?</p>
<p>Edit: there is a native component, this is an SWT application on win32.</p>
http://stackoverflow.com/questions/463240/what-is-the-best-way-to-pass-information-from-java-to-c/463308#4633080Answer by sk for What is the best way to pass information from java to c++?sk2009-01-20T21:58:07Z2009-01-20T21:58:07Z<p>Similar question:
<a href="http://stackoverflow.com/questions/180528/best-way-to-access-java-classes-from-c-better-than-using-jni-directly">Best way to access Java classes from C++? (better than using JNI directly)</a></p>
http://stackoverflow.com/questions/450807/java-generics-how-do-i-make-the-method-return-type-generic/450850#4508500Answer by sk for Java Generics: How do i make the method return type Generic?sk2009-01-16T15:51:47Z2009-01-16T15:51:47Z<p>Not really, because as you say, the compiler only knows that callFriend() is returning an Animal, not a Dog or Duck.</p>
<p>Can you not add an abstract makeNoise() method to Animal that would be implemented as a bark or quack by its subclasses?</p>
http://stackoverflow.com/questions/440036/re-creating-threading-and-concurrency-knowledge-in-increasingly-popular-languages/440086#4400868Answer by sk for Re-creating threading and concurrency knowledge in increasingly popular languagessk2009-01-13T18:04:08Z2009-01-13T22:51:23Z<p>The basic principles of concurrent programming existed before java and were summarized in those java books you're talking about. The java.util.concurrent library was similarly derived from previous code and research papers on concurrent programming.</p>
<p>However, some implementation issues are specific to Java. It has a specified memory model, and the concurrent utilities in Java are tailored to the specifics of that. With some modification those can be ported to other languages/environments with different memory model characteristics.</p>
<p>So, you might need a book to teach you the canonical usage of the concurrency tools in other languages but it wouldn't be reinventing the wheel.</p>
http://stackoverflow.com/questions/424567/is-it-beneficial-for-a-programmer-to-learn-how-to-build-a-compiler/424650#4246507Answer by sk for Is it beneficial for a programmer to learn how to build a compiler? sk2009-01-08T15:26:57Z2009-01-08T16:42:38Z<p>I took two compilers courses in university and found them useful because:</p>
<ul>
<li>Writing a compiler requires knowledge of a lot of areas of computer science - regular expressions, context-free grammars, syntax trees, graphs, etc. It can help you see how to apply the theory of computer science to real-world problems.</li>
<li>By understanding how a compiler generates and optimizes code, you will waste less time doing foolish "optimizations" yourself.</li>
<li>The process of scanning/lexing a file and building a syntax tree out of it is applicable to a much larger set of problems then just building a compiler.</li>
<li>Helps "generalize" programming languages - once you see that every programming language ends up as machine code in the end, it makes it easier to learn new languages because you see that every language is just a different way of expressing the same basic ideas.</li>
</ul>
<p>Some people would counter that there are more useful things you could be doing with your time, like learning a popular programming language or library that could help get you a job (this argument is often used as a reason not to learn assembly language). However knowing how compilers work will probably make it easier to learn new programming languages (see point #4).</p>
http://stackoverflow.com/questions/241539/can-unchecked-warnings-be-avoided-when-overriding-a-method-with-raw-type-paramete6Can unchecked warnings be avoided when overriding a method with raw type parameters?sk2008-10-27T22:05:09Z2009-01-08T16:23:50Z
<p>I am extending a class defined in a library which I cannot change:</p>
<pre><code>public class Parent
{
public void init(Map properties) { ... }
}
</code></pre>
<p>If I am defining a class 'Child' that extends Parent and I am using Java 6 with generics, what is the best way to override the init method without getting unchecked warnings?</p>
<pre><code>public class Child extends Parent
{
// warning: Map is a raw type. References to generic type Map<K,V> should be parameterized
public void init(Map properties) { }
}
</code></pre>
<p>If I add generic parameters, I get:</p>
<pre><code> // error: The method init(Map<Object,Object>) of type Child has the same erasure as init(Map) of type Parent but does not override it
public void init(Map<Object,Object>) { ... }
// same error
public void init(Map<? extends Object,? extends Object>) { ... }
// same error
public void init(Map<?,?>) { ... }
</code></pre>
<p>This error occurs regardless of whether I use a specific type, a bounded wildcard, or an unbounded wildcard. Is there a correct or idiomatic way to override a non-generic method without warnings, and without using @SuppressWarnings("unchecked")?</p>
http://stackoverflow.com/questions/941646/what-do-you-use-the-svn-tags-directory-for-anyways/941682#941682Comment by sk on What do you use the svn tags directory for anyways?sk2009-06-02T20:33:51Z2009-06-02T20:33:51ZExactly, because SVN stores copies as deltas, there's almost no overhead to creating tags. A tag is basically just a semantic association between a revision number and a human-readable name (and associated URL).http://stackoverflow.com/questions/926404/java-is-clone-really-ever-used-what-about-defensive-copying-in-getters-setter/927079#927079Comment by sk on Java: Is clone() really ever used? What about defensive copying in getters/setters?sk2009-05-29T17:18:53Z2009-05-29T17:18:53ZSure it can. If your setter does any validation, e.g. that the Date is in the past, and then the caller modifies the object to some time in the future, then you've just bypassed a validity check in the object. It's now in an undefined state.http://stackoverflow.com/questions/782375/which-is-more-popular-currently-by-recent-install-base-svn-or-cvs/782383#782383Comment by sk on Which is more popular (currently, by recent install base) SVN or CVS?sk2009-04-23T16:18:57Z2009-04-23T16:18:57ZCVS is the name of a large pharmacy chain in the US. And 'git' is a slang word for 'get', commonly used outside technical circles (I guess that factored into the name - you 'git' some files).http://stackoverflow.com/questions/686415/purpose-of-empty-synchronized-block-in-java/686765#686765Comment by sk on Purpose of empty synchronized block in Java?sk2009-03-26T18:11:23Z2009-03-26T18:11:23ZLike a poor man's CountDownLatch?http://stackoverflow.com/questions/678822/what-is-the-difference-between-and-object-in-java-generics/678843#678843Comment by sk on What is the difference between ? and Object in Java generics?sk2009-03-24T19:28:42Z2009-03-24T19:28:42ZBen is wrong, the only value you can put into a collection of type <?> is null, whereas you can put anything into a collection of type <Object>.http://stackoverflow.com/questions/663079/does-cloning-provide-a-performance-improvement-over-constructors-factory-methods/663090#663090Comment by sk on Does cloning provide a performance improvement over constructors/factory methods?sk2009-03-19T19:39:27Z2009-03-19T19:39:27ZHow so? I though prototype semantics just meant you could alter the behaviour of the constructor or other fields or methods at runtime.http://stackoverflow.com/questions/265708/do-i-need-a-semaphore-when-reading-from-a-global-structure/266008#266008Comment by sk on Do I need a semaphore when reading from a global structure?sk2009-03-17T18:57:44Z2009-03-17T18:57:44ZYour 'last updated by' example has a problem - the writes could be reordered if they are unsynchronized, meaning a value written to the last update field could be overwritten by an earlier value.http://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years/630651#630651Comment by sk on What made programming easier in the last couple of years?sk2009-03-10T15:16:26Z2009-03-10T15:16:26ZYes! Although before that there was Jolt.http://stackoverflow.com/questions/591004/generics-super-t/591010#591010Comment by sk on Generics..? Super Tsk2009-02-26T15:29:03Z2009-02-26T15:29:03ZPlease edit your original post rather than adding a reply if you have new information.http://stackoverflow.com/questions/570353/hardest-types-of-bugs-to-track/570403#570403Comment by sk on Hardest types of bugs to track?sk2009-02-25T16:42:46Z2009-02-25T16:42:46ZYou mean inter-thread? Threads don't usually communicate with themselves :)http://stackoverflow.com/questions/15496/hidden-features-of-java/101659#101659Comment by sk on Hidden Features of Javask2009-02-04T17:12:12Z2009-02-04T17:12:12ZThat's only necessary if you've shadowed the name (in your case, with the method parameter name). If you'd called the argument something else, then you could directly access the sortAscending member variable of Container class without using 'this'.http://stackoverflow.com/questions/103564/the-performance-impact-of-using-instanceof-in-java/103802#103802Comment by sk on The performance impact of using instanceof in Javask2009-01-27T18:34:22Z2009-01-27T18:34:22ZAlso if the child classes of SomeObject are value objects, then you don't want to put the logic in them. E.g. Pie and Roast might not be the correct place for putInOven() and putInMouth() logic.http://stackoverflow.com/questions/461260/is-there-a-maximum-number-you-can-set-xmx-to-when-trying-to-increase-jvm-memory/461395#461395Comment by sk on Is there a maximum number you can set Xmx to when trying to increase jvm memory?sk2009-01-20T14:16:16Z2009-01-20T14:16:16ZIt would be more helpful if this were a comment or edit to your original post so people can see it more clearly as part of the question.http://stackoverflow.com/questions/450749/should-i-go-open-source-even-if-i-want-to-retain-all-rightsComment by sk on Should I go open-source even if I want to retain all rights?sk2009-01-16T15:54:01Z2009-01-16T15:54:01ZCan you be more specific? What rights do you want to retain? What do you want to prevent people from doing?http://stackoverflow.com/questions/416183/in-java-critical-sections-what-should-i-synchronize-on/416198#416198Comment by sk on In Java critical sections, what should I synchronize on?sk2009-01-15T20:20:34Z2009-01-15T20:20:34ZAnother problem with locking on 'this' blindly is that you could have several methods contending on the same lock that logically do not need to be mutually exclusive.