Tagged Questions

9
votes
13answers
2k views

is “else if” faster than “switch() case” ?

Hello, I'm an ex Pascal guy,currently learning C#. My question is the following: Is the code below faster than making a switch? int a = 5; if (a == 1) { .... } else …
8
votes
3answers
519 views

Why does Eclipse use a native launcher ?

Eclipse the IDE is one of the best examples of a huge desktop application written in Java. Most Java applications I've seen usually rely on a batch or shell script to build a string with the class …
8
votes
8answers
1k views

How do you make linux GUI’s?

My main experience is with C && C++, so I'd prefer to remain with them. I don't want to use anything like QT, GTK, or wxWidgets or any tool kits. I'd like to learn native programming and this …
8
votes
4answers
3k views

Repeating background image in native iPhone app

Short of putting a UIWebView as the back-most layer in my nib file, how can I add a repeating background image to an iPhone app (like the corduroy look in the background of a grouped UITableView)? Do …
8
votes
16answers
704 views

Are .NET languages really making any kind of dent in consumer desktop applications?

Do you write consumer desktop applications with .NET languages? If so what type? My impression is that most consumer desktop applications are still native compiled applications in C, C++ and the …
7
votes
6answers
1k views

O(N log N) Complexity - Similar to linear?

Hey All, So I think I'm going to get buried for asking such a trivial but I'm a little confused about something. I have implemented quicksort in Java and C and I was doing some basic comparissons. …
7
votes
7answers
366 views

Is there some sort of secure local storage on Windows?

I was thinking of making a small tool. It is not important what the tool will do. The important thing, is that the tool will need to store some sensitive information on the user's HDD. EDIT: The …
7
votes
2answers
178 views

How can I set the /baseaddress to a “good” value?

We have a project with many dll files which get loaded when the application starts. The baseaddresses of the dll files do overlap so that the memory image gets relocated. Is there a possibility to …
6
votes
8answers
491 views

Does A Program that is written with the Microsoft .NET framework compile/execute native code?

Newb question: Does a Program that is written with the Microsoft .NET framework compile/execute native code? I don't mean if there is a way not to have to install the .net framework on a machine. …
6
votes
3answers
493 views

Can a .NET app be complied to native.

Hi all, Just wondering if a .NET app can be compiled down to native machine code ahead of time? I'm not planning on doing so if you can, I'm just curious. Thanks
6
votes
8answers
451 views

Will Learning C++ Help for Building Fast/No-Additional-Requirements Desktop Applications?

Will learning C++ help me build native applications with good speed? Will it help me as a programmer, and what are the other benefits? The reason why I want to learn C++ is because I'm disappointed …
5
votes
19answers
2k views

What is the best C++ book for an intermediate to expert developer?

I'm looking to pick up a good C++ book. I have been programming for many years in managed languages and I will me making the jump to native code using C++. What books do you recommend to get me up …
4
votes
9answers
227 views

Are there any programming languages that support xml natively?

If there are any then how deeply is xml integrated into language? What primitives are used to manipulate xml document? PS. I'm not interested in declarative languages such as SQL, XPath, XSLT :)
4
votes
4answers
313 views

Which is the fastest way to access native code from Java?

Which is the fastest way of calling a native library from Java? The ones I know about are NativeCall - what we're currently using JNA - haven't used it, but looks reasonable JNI - looks horrendous …
4
votes
4answers
448 views

What is native implementation in Java

If we look at the Java Object class then we can find some of the methods like public native int hashCode(), protected native Object clone(), so my question is what are these natives and how do these …

1 2 3 4 5 8 next
15 30 50 per page