Tagged Questions

119
votes
31answers
43k views

C++ performance vs. Java/C#

My understanding is that C/C++ produces native code to run on a particular machine architecture. Conversely, languages like Java and C# run on top of a virtual machine which abstracts away the native ...
86
votes
13answers
8k views

What are the differences between Generics in C# and Java… and Templates in C++?

I mostly use Java and generics are relatively new. I keep reading that Java made the wrong decision or that .NET has better implementations etc. etc. So, what are the main differences between C++, ...
71
votes
18answers
19k views

Why does C# not provide the C++ style 'friend' keyword?

The C++ friend keyword allows a class A to designate class B as its friend. This allows Class B to access the private/protected members of class A. I've never read anything as to why this was left ...
70
votes
9answers
4k views

How to drive C#, C++ or Java compiler to compute 1+2+3+…+1000?

In a recent interview, I was asked a really strange question. The interviewer asked me how can I compute 1+2+3+...+1000 just using compiler features. This means that I am not allowed to write a ...
68
votes
11answers
3k views

Efficiency of premature return in a function

This is a situation I encounter frequently as an inexperienced programmer and am wondering about particularly for an ambitious, speed-intensive project of mine I'm trying to optimize. For the major ...
57
votes
34answers
6k views

When do you use the “this” keyword? [closed]

This may be a silly question, but I was curious how other people use the this keyword. I tend to use it in constructors but may also use it throughout the class in other methods. Some examples: In ...
55
votes
24answers
11k views

How much faster is C++ than C#?

Or is it now the other way around? From what I've heard there are some areas in which C# proves to be faster than C++, but I've never had the guts to test it by myself. Thought any of you could ...
51
votes
17answers
4k views

What is the fastest way to compute sin and cos together?

I would like to compute both the sine and co-sine of a value together (for example to create a rotation matrix). Of course I could compute them separately one after another like a = cos(x); b = ...
48
votes
15answers
3k views

Why should casting be avoided?

I generally avoid casting types as much as possible since I am under the impression that it's poor coding practice and may incur a performance penalty. But if someone asked me to explain why exactly ...
45
votes
13answers
15k views

Memcached on Windows (x64)

Does anyone know IF, WHEN or HOW I can get Memcached running on a Windows 64bit environment? I'm setting up a new hosting solution and would much prefer to run a 64bit OS, and since it's an ASP.Net ...
44
votes
7answers
4k views

Developing Internet Explorer Extensions?

So..after developing a few Firefox & Chrome extensions, I've decided to try and expand my skillset by developing an Internet Explorer extension in C#. I went into it thinking it wouldn't be too ...
43
votes
18answers
4k views

How much null checking is enough?

What are some guidelines for when it is not necessary to check for a null? A lot of the inherited code I've been working on as of late has null-checks ad nauseam. Null checks on trivial functions, ...
37
votes
6answers
2k views

Using “double” as counter variables in loops

In a book I am currently reading, there is this excerpt: You can also use a floating-point value as a loop counter. Here's an example of a for loop with this kind of counter: double ...
35
votes
21answers
3k views

What are the best naming conventions you've used? [closed]

I was wondering how people name variables, objects, and function names with all the combination's out there; camel-case, pascal, using underscores, all caps for statics etc.... A good naming ...
35
votes
12answers
4k views

What programming skills I need to become an iPhone developer?

I have almost 3 years of programming experience in windows world. I know C and C++ (part of my college education) and have been working on Delphi and C# professionally. I am thinking about learning ...
34
votes
3answers
1k views

unsigned int (c++) vs uint (c#)

Following is the c# code: static void Main(string[] args) { uint y = 12; int x = -2; if (x > y) Console.WriteLine("x is greater"); else ...
32
votes
29answers
2k views

format of for loops

i'd just like to get some thoughts on the best way to do for loops (in c based languages). all over the web code samples have for loops which look like this for(int i = 0; i < 5; i++) while i ...
31
votes
4answers
8k views

What do 'statically linked' and 'dynamically linked' mean?

I often hear the terms 'statically linked' and 'dynamically linked', often in reference to code written in C(++|#) but I don't know much of anything about either, what are they, what exactly are they ...
29
votes
17answers
3k views

C# versus C++ performance

I often heard that people prefer C++ to C# mainly in the performance critical code,because the GC might turn up on critical path, causing the performance penalty. However, when I read through the ...
28
votes
3answers
1k views

Non client painting on aero glass window

Now Im customizing title bar of my application. My aim is to add one extra button on title bar. Im my previous question people have adviced me the way I can customize non client area. Thats works ...
26
votes
9answers
1k views

Is C# really slower than say C++?

I've been wondering about this issue for a while now. Of course there are things in C# that aren't optimized for speed, so using those objects or language tweaks (like LinQ) may cause the code to ...
26
votes
11answers
4k views

Why C# is not allowing non-member functions like C++

C# will not allow to write non-member functions and every method should be part of a class. I was thinking this as a restriction in all CLI languages. But I was wrong and I found that C++/CLI supports ...
26
votes
10answers
5k views

Is the destructor called if the constructor throws an exception?

Looking for an answer for C# and C++. (in C#, replace 'destructor' with 'finalizer')
25
votes
6answers
760 views

How to connect to a WCF service with Custom Binding from unmanaged C++

I need to connect to a WCF service from a native C++ application. I tried the link below and it worked with wsHttpBinding. Create WCF service for unmanaged C++ clients However I need to connect ...
25
votes
14answers
2k views

How do you debug a Windows Service?

I read the MSDN article on the topic. To quote: Because a service must be run from within the context of the Services Control Manager rather than from within Visual Studio, debugging a ...
25
votes
12answers
5k views

Why does a derivative trading position always require C++ knowledge?

I’ve never worked in a trading environment before and I was curious to see that few of the trading houses seem to use C#, but most of them do heavily rely on C++. Why is it? Is it because C++ is ...
23
votes
16answers
2k views

Ever done a total rewrite of a large C++ application in C#?

I know Joel says to never do it, and I agree with this in most cases. I do think there are cases where it is justified. We have a large C++ application (around 250,000 total lines of code) that uses ...
23
votes
6answers
2k views

How to generate a guitar note

Back in a freshman or software programming class we had to write a program that would simulate the sound of a guitar pluck. I can make pure sin waves all day, but I am trying to remember how to do a ...
22
votes
22answers
3k views

Why not put all braces inline in C++, C#, Java, javascript, etc.?

Of all the conventions out there for positioning braces in C++, C#, Java, etc., I don't think I've ever seen anyone try to propose something like this: public void SomeMethod(int someInput, string ...
22
votes
4answers
7k views

Why are Hexadecimal Prefixed as 0x?

Why are Hexadecimal Prefixed as 0x and not anything else? I understand the usage of prefix but I dont understand the significance of 0x.
22
votes
16answers
2k views

What is the purpose of anonymous { } blocks in C style languages?

What is the purpose of anonymous { } blocks in C style languages (C, C++, C#) Example - void function() { { int i = 0; i = i + 1; } { int k = 0; k = k + 1; } } Edit - ...
21
votes
12answers
1k views

Why do C languages require parens around a simple condition in an if statement?

It sounds stupid, but over the years I haven't been able to come up with a use case that would require this. A quick google search didn't reveal anything worthwhile. From memory there was a use case ...
21
votes
19answers
2k views

What advantages can I get from learning C++ if I'm mainly a C# Programmer?

Recently I've started to notice a lot of smirks and generally rude comments whenever I mention C#. Everyone I talk to either says learn Python or learn C++. Python is a nice language, I get it. But ...
21
votes
15answers
3k views

Is C++ worth investing time in learning?

With languages like C# that can basically do anything, I found a drawback that could not be the case in the future, and that is the lack of many open source 3rd party libraries that are well ...
20
votes
24answers
3k views

do…while vs while [closed]

Possible Duplicates: While vs. Do While When should I use do-while instead of while loops? I've been programming for a while now (2 years work + 4.5 years degree + 1 year pre-college) and ...
20
votes
11answers
777 views

What puzzles me…Are .NET languages the mainstream languages for Windows (standalone) applications?

I'm an inquisitive .NET student without any commercial working knowledge and I have been puzzled by what exactlty are .NET languages meant for? Q1.If you look on job websites, .NET seems mainly used ...
19
votes
18answers
3k views

C# vs. C++ in a cross-platform project

My team is planning to develop an application that is initially targeted for Windows but will eventually be deployed cross-platform (Mac, Linux and potentially embedded devices). Our decision is ...
19
votes
9answers
1k views

What are the schools of OOP?

Are there philosophical differences between Smalltalk OOP and Simula OOP ? This is a question related to Java & C# vs C++ indirectly. As I understand, C++ is based on Simula but Java and C# are ...
19
votes
13answers
8k views

What does void mean in C, C++, and C#?

Looking to get the fundamentals on where the term VOID comes from and why it would be called void. The intention of the question is to assist someone who has no C experience and is suddenly looking at ...
18
votes
14answers
856 views

C# to C++ 'Gotchas'

I have been developing a project that I absolutely must develop part-way in C++. I need develop a wrapper and expose some C++ functionality into my C# app. I have been a C# engineer since the ...
18
votes
14answers
1k views

How can I transition my career away from Microsoft/c# oriented? [closed]

I'm mostly happy working in my c# job, but when I browse job listings (particularly startups), it seems that the positions I personally find to be most interesting require lots of experience with a ...
18
votes
9answers
9k views

Calling virtual method in base class constructor

I know that calling a virtual method from a base class constructor can be dangerous since the child class might not be in a valid state. (at least in C#) My question is what if the virtual method is ...
18
votes
14answers
7k views

What's the best way to do a backwards loop in C/C#/C++?

I need to move backwards through an array, so I have code like this: for (int i = myArray.Length - 1; i >= 0; i--) { // Do something myArray[i] = 42; } Is there a better way of doing ...
18
votes
13answers
2k views

Do you use curly braces for additional scoping? [closed]

I mean other than using it when required for functions, classes, if, while, switch, try-catch. I didn't know that it could be done like this until I saw this SO question. In the above link, Eli ...
17
votes
3answers
226 views

How does an application launcher update itself?

Launchers are most common in games. Think of League of Legends, Starcraft II, or almost any MMO out there. Before starting the actual game, you have a small launcher app that takes care of updates and ...
17
votes
3answers
436 views

How to measure elapsed time in C# and C++

I have a simple C# and C++ code that computes a sum of dot products. The C# code is: using System; namespace DotPerfTestCS { class Program { struct Point3D { ...
17
votes
7answers
561 views

Why should an API return 'void'?

When writing an API or reusable object, is there any technical reason why all method calls that return 'void' shouldn't just return 'this' (*this in C++)? For example, using the string class, we can ...
17
votes
13answers
2k views

Most common or vicious mistakes in C# development for experienced C++ programmers

What are the most common or vicious mistakes when experienced C++ programmers develop in C#?
17
votes
7answers
11k views

Possible to call C++ code from C#?

is it possible to call C++ code, possibly compiled as a code library file (.dll), from within a .NET language such as C#? Specifically, C++ code such as the RakNet networking library Would really ...
17
votes
7answers
2k views

Multithreading reference?

I am asking about a good reference for multithreading programming in terms of concepts with good examples using C++/C#?

1 2 3 4 5 62