Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
10answers
977 views

Classes to avoid (code complete)

I am somewhat confused about a paragraph in the code complete book. In the section "Classes to avoid" it reads: "Avoid classes named after verbs A class that has only behavior but no data is ...
16
votes
22answers
2k views

How can I become a better C# programmer?

When you can create classes and do the simple stuff (GUI, reading text files, etc...), where do I go from here? I've started reading Code Complete 2nd Edition which is great but is more of a general ...
8
votes
9answers
810 views

Is Code Complete suitable for Web Developers?

It seems everywhere I go, I am bombarded with mentions of Steve McConnell's Code Complete book, my question is this book relevant for Web Developers (PHP Developers) and not just software engineers ...
5
votes
5answers
224 views

C++ advice from Code Complete on encapsulation?

In the section on "Good Encapsulation" in Code Complete, it is recommended to hide private implementation details. An example is given in C++. The idea is basically to completely separate the ...
4
votes
3answers
312 views

Code Complete 2ed, composition and delegation

After a couple of weeks reading on this forum I thought it was time for me to do my first post. I'm currently rereading Code Complete. I think it's 15 years since the last time, and I find that I ...
2
votes
1answer
218 views

NetBeans PHP Code Completion for Standard Functions

I have started to use NetBeans 6.9.1 for developing PHP projects. Although it does provide code completion to certain extent, but it's by no means complete. For example, commonly used functions such ...
2
votes
2answers
321 views

Coding style: function and procedures coding standard

Ch 7.6 of Code Complete 2 is confusing me, I've attached some sample code (in php) mind telling me which style is the best? or suggest something better? thanks Style 1 public function ...
2
votes
4answers
367 views

What is a good naming convention for a routine that sets a global variable in the same class

Code Complete (Chapter 7, Section 3) says that a good function should be named for the value it returns and a good procedure name in a class should be named for what it does. When I write ...
1
vote
1answer
322 views

XCode 4's code completion for methods in the .h file

In Xcode 3 I could first write my method in the implementation (.m) file; afterwards adding the same method to the interface (.h) file. At that point Xcode 3 made a code completion for the method ...
1
vote
3answers
250 views

Is there a version of Code Complete that focuses on C#?

I started reading "Code Complete" book and found it very interesting and good book. But it focused on C++ and there is no mention of C# (apparently because it was written before C#). Is there any ...
0
votes
0answers
11 views

how to use skpet code finish with extjs4

i had follow the skpet tutorail,but it didn't work, did some one could give any advice? bellow is the spket install document http://www.spket.com/extjs.html
0
votes
1answer
15 views

Simple Eclipse Code Templates - Issue

Hi I have Code Templates enabled in Eclipse. I just installed Eclipse for Java and Enabled Code Templates (From Code Assist Settings). I typed "sysout" Ctrl+Space, but I do not System.out.println. ...
0
votes
2answers
52 views

Grouping of related variables and operations?

In Code Complete, chapter 10, it is advised to group related statements, and the following example is given: void SummarizeData(...) { ... GetOldData( oldData, &numOldData ); ...
0
votes
1answer
156 views

Software and Snow White [closed]

I'm reading Code Complete 2, and I'm curious about the metaphor he mentions used by Paul Heckel between writing software and filming Snow White. Does anyone now the details about this? Thanks.