Tagged Questions

235
votes
27answers
25k views

Interview question: Check if one string is a rotation of other string [closed]

A friend of mine was asked the following question today at interview for the position of software developer: Given two string s1 and s2 how will you check if s1 is a rotated version of s2 ? Example: ...
119
votes
31answers
39k 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 ...
104
votes
17answers
65k views

What is the equivalent of the C++ Pair<L,R> in Java?

Is there a good reason why there is no Pair in Java? What would be the equivalent of this C++ construct? I would rather avoid reimplementing my own. It seems that 1.6 is providing something similar ...
85
votes
14answers
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++, ...
82
votes
13answers
12k views

C++ versus D

Is the D language a credible alternative to Java and C++? What will it take to become a credible alternative? Should I bother learning it? Does it deserve evangelizing? The main reason I ask is that ...
67
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 ...
66
votes
9answers
3k 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 ...
64
votes
20answers
41k views

Java operator overload

Coming from C++ to Java, the obvious unanswered question is why not operator overload. On the web some go about: "it's clearly obfuscated and complicate maintenance" but no one really elaborates ...
63
votes
59answers
6k views

Why are professors or schools picking Java over C++ to teach to students? [closed]

Is it just me or are most colleges teaching Java instead of C++ these days? I feel like I've been missing out with having zero classes teach or use C++ at all.
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 ...
42
votes
8answers
2k views

Enhanced FOR loops in C++

I am switching from Java to C++ and I was wondering whether C++ contains the enhanced for loops that I used in java, in example: int[] numbers = {1,2,3,4,5,6,7,8,9,10}; for (int item : numbers) { ...
42
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, ...
36
votes
14answers
2k views

Which Mathematics should I study to be a better programmer/developer? [closed]

Possible Duplicates: How much mathematics and physics should a programmer know? What are the core mathematical concepts a good developer should know? I would like to study mathematics to be ...
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 ...
33
votes
7answers
2k views

C++ vs Java? Why does the ICC generate slower code than VC? [closed]

The following is a simple loop in C++. The timer is using QueryPerformanceCounter() and is quite accurate. I found Java to take 60% of the time C++ takes and this can't be?! What am I doing wrong ...
33
votes
11answers
2k views

Why not have all the functions as virtual in C++?

I know that virtual functions have an overhead of dereferencing to call a method. But I guess with modern architectural speed it is almost negligible. Is there any particular reason why all ...
32
votes
8answers
13k views

Is there a Java equivalent or methodology for the typedef keyword in C++?

Coming from a C and C++ background, I found judicious use of typedef to be incredibly helpful. Do you know of a way to achieve similar functionality in Java, whether that be a Java mechanism, ...
29
votes
7answers
1k views

My software is not a virus. What should I do?

I have written a program (Mimer 1.1 -- http://sourceforge.net/projects/mimer/files/) and after 3000 downloads I found out that my own Nod32 Antivirus detects my program as a Win32/Agent.NFIWJLP ...
28
votes
14answers
2k views

Code to read and learn from [closed]

The best way to learn programming is by writing programs. Reading programs written by brilliant programmers is equally important. If someone asks me for source code to read and learn from, without a ...
25
votes
2answers
350 views

What are the similarities between the Java memory model and the C++11 memory model? [closed]

The new c++ standard introduces the notion of a memory model. There were already questions on SO about it, what does it mean, how does it change the way we write code in c++ and so on. I'm interested ...
25
votes
1answer
1k views

Logic differences in C and Java

Compile and run this code in C #include <stdio.h> int main() { int a[] = {10, 20, 30, 40, 50}; int index = 2; int i; a[index++] = index = index + 2; for(i = 0; i <= 4; i++) ...
24
votes
8answers
962 views

What language do they build other languages with?

What language is used to build low level languages like c++ and java? How could you build the first language with no language?
24
votes
22answers
3k views

How difficult is it to turn a “Java School” programmer into a C or C++ programmer?

My company, a C++ house, is always looking to hire recent grads. However due to the Java Schools phenomenon, we typically end up interviewing strong Java programmers with maybe a minute smattering of ...
24
votes
20answers
2k views

Is writing “this.” before instance variable and methods good or bad style?

One of my nasty (?) programming habits in C++ and Java is to always precede calls or accesses to members with a this. For example: this.process(this.event). A few of my students commented on this, ...
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
8answers
7k views

Crossplatform iPhone / Android code sharing

Simply put: What is the most effective way to share / reuse code between iPhone and Android builds? The two most common scenarios I think would be: Blank slate new project, knowing ahead of time ...
22
votes
23answers
5k views

How can I perform multiplication without the '*' operator?

I was just going through some basic stuff as I am learning C. I came upon a question to multiply a number by 7 without using * operator. Basically its like this (x<<3)-x; Now I know ...
22
votes
3answers
1k views

How to write Java-like enums in C++?

Coming from a Java background, I find C++'s enums very lame. I wanted to know how to write Java-like enums (the ones in which the enum values are objects, and can have attributes and methods) in C++. ...
22
votes
21answers
2k views

Where & How to start a career as a software developer [closed]

I am a newbie here. So please bear with me if this is a duplicate/very trivial Qn. I am not from a Computer Science background. But currently working in software testing. I would like move to software ...
21
votes
9answers
2k views

Interview question - Search in sorted array X for index i such that X[i] = i

I was asked the following question in my interview yesterday: Consider a Java or C++ array say X which is sorted and no two elements in it are same. How best can you find an index say i such that ...
21
votes
7answers
1k views

How is Java inspired by Lisp? [closed]

"We were after the C++ programmers. We managed to drag a lot of them about halfway to Lisp." Guy Steele, co-author of the Java specspec Source : http://www.paulgraham.com/icad.html ...
21
votes
12answers
1k views

Learning how to program real things

How would you guys recommend I actually learn to program real things? I mean, I know how to do basic academic things. I can implement a templated stack/queue/map/etc. data structure in C++ or Java or ...
21
votes
12answers
1k views

Do Java programs ever crash?

I am a c++ programmer , I know little bit about java. I know that java programmers do not have to work with memory directly like C++. I also know that most crashes in C++ appliations are due to ...
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 ...
20
votes
17answers
1k views

Which complements Python best: Java, C, or C++?

I am in the process of applying to a Computer Science program which requires students to have at least an intro-level exposure to either Java, C or C++. I have some experience with Python and I would ...
20
votes
7answers
3k views

How to implement a network protocol?

Here is a generic question. I'm not in search of the best answer, I'd just like you to express your favourite practices. I want to implement a network protocol in Java (but this is a rather general ...
20
votes
11answers
913 views

Do people still write their own data structures and algorithms?

Instead of the STL and similar libraries in other languages? As a newbie, how much should I delve into this part of software development? Breadth first or depth? Is only a conceptual understanding ...
20
votes
7answers
9k views

Why doesn't Java have a copy constructor?

Why doesn't Java support a copy constructor like in C++?
19
votes
8answers
1k views

Java's final vs. C++'s const

The Java for C++ programmers tutorial says that (highlight is my own): The keyword final is roughly equivalent to const in C++ What does "roughly" mean in this context? Aren't they exactly the ...
19
votes
7answers
896 views

Unit testing real-time / concurrent software

The classical unit testing is basically just putting x in and expecting y out, and automating that process. So it's good for testing anything that doesn't involve time. But then, most of the ...
18
votes
3answers
1k views

Why is Erlang said to be more suited for server side programming in webgames than Java and C++?

I don't really understand, how can Erlang be more efficient than C++?
18
votes
11answers
17k views

Online compilers/runtime for Java, C++, Python and ObjC?

Does anyone know of a good online compiler/runtime (for C++, Java, Python, ObjC etc.) that I can access on the web? What I'm looking for is something that would allow me to type in a program in a ...
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 ...
18
votes
8answers
5k views

Iterators in C++ (stl) vs Java, is there a conceptual difference?

I'm returning to c++ after being away for a bit and trying to dust off the old melon. In Java Iterator is an interface to a container having methods: hasNext(), next() and remove(). The presence of ...
17
votes
4answers
2k views

Access C++ shared library from Java: JNI, JNA, CNI, or SWIG?

Which of the following (or other) method would you recommend for accessing a C++ shared library from Java and why? JNI: I hear this has a number of pitfalls and is quite the undertaking? SWIG: ...
17
votes
8answers
729 views

Different styles of flow of program?

I am a computer science student therefore I do not know that much. I was recently talking with a friend who just got a job as a (java) software developer. He told me that in his job there is a guy ...
17
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 ...
17
votes
11answers
9k views

Is there a way to simulate the C++ 'friend' concept in Java?

I would like to be able to write a Java class in one package which can access non-public methods of a class in another package without having to make it a subclass of the other class. Is this ...
16
votes
3answers
172 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 ...
16
votes
0answers
185 views

Can any modern OO language compete with C++'s array store performance? [migrated]

I just noticed that every modern OO programming language that I am at least somewhat familiar with (which is basically just Java, C# and D) allows covariant arrays. That is, a string array is an ...

1 2 3 4 5 37