1
vote
1answer
13 views
java synchronized block for more than 1 objects?
Hi,
I have two arrays, and I need to synchronize access to them across threads. I am going to put them in a synchronized block. The problem is, I can pass only one of them to 'synchronized' st one …
2
votes
7answers
119 views
Why should #ifdef be avoided in .c files?
A programmer I respect said that in C code, #if and #ifdef should be avoided at all costs, except possibly in header files. Why would it be considered bad programming practice to use #ifdef in a .c …
0
votes
5answers
64 views
Call a function based on JVM version.
I have a JFrame object, and i need to support two JVM 1.5 on Mac OS X and 1.6 on Windows. On windows I need to use setIconImages function to set multiple icon sized for the application but this …
3
votes
13answers
292 views
Best practices: Where should function comments go in C/C++ code?
So... I understand this might be subjective, but I'd like some opinions on what the best practice for this is.
Say I have the following header and .cpp file:
header:
// foo.h
class foo
{
public:
…
0
votes
1answer
12 views
How do I use XMLUnit to compare only certain parts of files?
How do I use XMLUnit to compare 2 or more nodes (of the same name) in 2 different files?
I have 2 XML files that look like this:
<SearchResults>
<result type="header"> ...ignore …
0
votes
2answers
20 views
resize required to view images in java applet
Hello all,
I'm working with java images for the first time and having a problem viewing them when the applet loads. If I resize the window they display fine. I feel like this is a common …
3
votes
8answers
148 views
Why are there finalizers in java and c#?
I'm not quite understanding why there are finalizers in languages such as java and c#. AFAIK, they:
are not guaranteed to run (in java)
if they do run, they may run an arbitrary amount of time after …
0
votes
3answers
67 views
Binary tree search algorithm errors
I have a binary tree that I need to search through. I'm not searching for one specific node of the tree, but rather over every node of the tree to gain information about them. I have a simple …
0
votes
4answers
110 views
Why is JVM creating a copy of an object when passing it to a method?
I encountered a strange problem today: i had a method that took two Date objects as arguments. The calling method passed reference to the very same object as both of them (the method in question was …
4
votes
5answers
84 views
Why are file handles such an expensive resource?
In holy wars about whether garbage collection is a good thing, people often point out that it doesn't handle things like freeing file handles. Putting this logic in a finalizer is considered a bad …
0
votes
4answers
51 views
What is the time complexity of java.util.HashMap class’ keySet() method?
I am trying to implement a plane sweep algorithm and for this I need to know the complexity of
java.util.HashMap class' keyset() method. What i feel, it would be O(n log n). Am I correct?
**Edit
I am …
8
votes
14answers
229 views
Bug Hunting Strategies?
Let's say you have a bug that was found in functional testing of a fairly complex part of the software.
It could stem from bad/unexpected data in the database, middle-tier code, or something in the …
3
votes
3answers
71 views
Memory effects of synchronization in Java
JSR-133 FAQ says:
But there is more to synchronization
than mutual exclusion. Synchronization
ensures that memory writes by a thread
before or during a synchronized block
are made visible …
0
votes
3answers
26 views
Capture a part of a string that does not match another group (C# Regex)
Hello.
I am working on a project that requires the parsing of "formatting tags." By using a tag like this: <b>text</b>, it modifies the way the text will look (that tag makes the text …
1
vote
6answers
111 views
Is there a Perl shortcut to count the number of matches in a string?
Suppose I have:
my $string = "one.two.three.four";
How should I play with context to get the number of times the pattern found a match (3)? Can this be done using a one-liner?
I tried this:
my …
