visual studio - How to setup VS2008 for efficient C++ development -
normally program in c# have been forced work in c++. seems integration visual studio (2008) poor compared c# wondering if there tools, plugins or configurations can improve situation.
another post pointed out program visual assist x, @ least helps things such refactoring (though bit expensive me). major problem is, though, compile errors give little clue wrong , spend of time figuring out did wrong. feels possibly statically check lot more errors vs out of box. , why doesn't provide blue underlines c#, shouldn't hard?!
i realize half problem fact new c++ feel can unreasonably hard program compile. there tools of sort out there or demands high?
i think there 2 possibilities: 1) either you're trying out c++ stuff waaay on knowledge (and consequently, don't know did wrong , how interpret error messages), 2) have high expectations.
a hint: many subsequent errors caused first error. when huge list of errors, correct first error , recompile. you'd amazed how garbage (in terms of error messages) missing delimiter or type declaration produce :)
it difficult syntactically analyze c++ program before compilation 2 reasons: 1) c++ grammar context-dependent, 2) templates turing-complete (think of them of functional programming language weird syntax).
Comments
Post a Comment