Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
7answers
356 views

Is it better to use out for multiple output values or return a combined value type?

For instance, along the lines of: public bool Intersect (Ray ray, out float distance, out Vector3 normal) { } vs public IntersectResult Intersect (Ray ray) { } public class IntersectResult { ...
7
votes
7answers
920 views

PHP best practices: repass variables from config file when calling functions or use global?

I have a program that I use on several sites. It uses require('config.php'); to set any site dependant variables like mysql connect info, paths, etc. Let's say that I use one of these site-dependant ...
5
votes
1answer
655 views

Why everything in WPF is blurry?

Can someone explain why everything in WPF is blurry? Is this something that can be fixed?
4
votes
8answers
1k views

Check if variable null before assign to null?

Is variable assignment expensive compared to a null check? For example, is it worth checking that foo is not null before assigning it null? if (foo != null) { foo = null; } Or is this worrying ...
3
votes
5answers
184 views

Clarity vs. Obfuscation writing code

Sometimes there are a solution that it's simple and elegant but imposible to understand by all. What do you think about this expresion, exchange value of two variables, without auxiliar variable: ...
3
votes
9answers
387 views

General programming - else or else if for clarity

In a situation where a variable could have two different values, and you do something if its one, something differnent if its the other, would you just do: if(myVariable == FIRST_POSSIBLE_VALUE) { ...
2
votes
1answer
34 views

How to get rid of the blurry fonts for menus when using WPF?

WPF beginner here. I'm trying to mimic the font style used in Visual Studio 2010 for menus. Under Windows XP menus look blurry. How can my code be changed to get the same result? <Window ...
2
votes
1answer
102 views

Is there benefit in a generified interface?

Recently in an answer it was suggested to me that this: public interface Operation<R extends OperationResult, P extends OperationParam> { public R execute(P param); } Is better than ...
2
votes
3answers
98 views

Refactoring advice: maps to POJOs

I currently am part of a project where there is an interface like this: public interface RepositoryOperation { public OperationResult execute(Map<RepOpParam, Object> params); } This ...
2
votes
9answers
156 views

Naming booleans

If I only want to check if something is impossible or not (i.e., I will not be using something like if(possible)), should I name the boolean notPossible and use if(notPossible) or should I name it ...
2
votes
9answers
263 views

Java While-Loops

So while rewriting some code, I came across something along the lines of: Method 1 while ( iter.hasNext() ) { Object obj = iter.next(); if ( obj instanceof Something ) { returnValue ...
2
votes
1answer
1k views

iPhone Dev - Where to put lazy loading code

I already had a question like this, but I already deleted it anyway. I have very simple app that has a root view controller and it switches between two other view controller views. So in my root view ...
1
vote
1answer
34 views

6 abstractions, 1 construct

Which do you prefer, and why: Typical if (this.sun.hidden === true && this.moon.visible === false) { print "its daytime" } Possible unnecessary abstraction if (isSunHidden() === ...
0
votes
0answers
120 views

Accelerated c++ Exercise 8-5 ..wording help?

Accelerated C++ --Exercise 8-5: Re-implement the gen_sentence and xref functions from Chapter 7 to use output iterators rather than putting their output in one data structure. Test these new ...
0
votes
1answer
406 views

VB.NET Delegate code clarification

I am trying to figure out what this piece of code does. It errors often (not in a system damaging way) but enough that it bothers me. It would be great if I could get some more information on what ...
-1
votes
1answer
131 views

problem with MPMoviePlayerController in iphone device

i have a problem with MPMoviePlayerController in iphone device.it playing in my iphone device without clarity(cant see the video content properly ) .However it playing in my simulator properly.can any ...