大约有 42,000 项符合查询结果(耗时:0.0459秒) [XML]
Mythical man month 10 lines per developer day - how close on large projects? [closed]
Everybody always says that they can beat the "10 lines per developer per day" from the "Mythical Man Month", and starting a project, I can usually get a couple hundred lines in in a day.
...
What does cherry-picking a commit with Git mean?
Recently, I have been asked to cherry-pick a commit.
12 Answers
12
...
How will I know when to create an interface?
I'm at a point in my development learning where I feel like I must learn more about interfaces.
24 Answers
...
How to prevent SIGPIPEs (or handle them properly)
I have a small server program that accepts connections on a TCP or local UNIX socket, reads a simple command and, depending on the command, sends a reply. The problem is that the client may have no interest in the answer sometimes and exits early, so writing to that socket will cause a SIGPIPE and m...
How do I tokenize a string in C++?
Java has a convenient split method:
35 Answers
35
...
What does Google Closure Library offer over jQuery? [closed]
...
8 Answers
8
Active
...
No == operator found while comparing structs in C++
Comparing two instances of the following struct, I receive an error:
8 Answers
8
...
What is the use of making constructor private in a class?
Why should we make the constructor private in class? As we always need the constructor to be public.
23 Answers
...
SQL keys, MUL vs PRI vs UNI
What is the difference between MUL , PRI and UNI in MySQL?
4 Answers
4
...
Difference between string and char[] types in C++
I know a little C and now I'm taking a look at C++.
I'm used to char arrays for dealing with C strings, but while I look at C++ code I see there are examples using both string type and char arrays:
...
