vote up 2 vote down star
2

Does it make you a bad programmer if you have to look up the syntax for rare syntax?

For example, I code in C# 3.0 and closures/lambda expressions are not something I use often. Very rarely in fact, both at home and at work. So when I do use these, and my refactoring tool (Reshaper) can't do the refactoring from conventional code to the above constructs where applicable, does it make you a bad coder if you need to look up the syntax? In the real world, if you don't know or practise the syntax very frequently, you will forget it.

What's your thoughts?

flag

55% accept rate
7  
Should be Community Wiki at the very least. – devinb Apr 22 at 21:19
2  
No, it does not. – Sean Bright Apr 22 at 21:19
3  
-1 make it a wiki... – Miyagi Coder Apr 22 at 21:24
2  
Does not need to be a Community Wiki – Greg Apr 22 at 21:24
10  
Questions that are about the opinions of the community are 'community wiki' questions. Questions about 'how do I fix X problem in my code' are not community wiki, because they are solvable. This question is not 'solvable' even if the upvotes select one answer as being more generally agreed upon. – devinb Apr 22 at 21:41
show 6 more comments

closed as subjective and argumentative by dotnetdev, SilentGhost, LFSR Consulting, DJ, mquander Apr 24 at 20:15

24 Answers

vote up 0 vote down

I've worked in the D.C. area as a .NET developer for many years. During that time I've worked with some of the most (& least) experienced coders, database architects, & software engineers the industry has to offer.

If a single one of them never looks anything up it would astonish me. There are hundreds, perhaps thousands of technologies in regular use nowadays... and we're all merely human after all. Even if they avoid somehow doing it in daily practice, surely they must do it when researching an outside-the-box solution or new technology.

link|flag
vote up 1 vote down

No, it does not make you a bad programmer, it merely slows you down.

However, just imagine this... if you have a very good memory, you will be able to stay focused on the coding task far better than someone who has to stop and look up syntax frequently.

IMHO, cultivating a good memory is a good idea.

link|flag
vote up 0 vote down

No. Everyone does it, and as you gain experience with the syntax, features, and idioms of a language, the need to look up syntax will decrease.

link|flag
vote up 0 vote down

No, especially not rare syntax. Everybody has to look things up. The key is that it shouldn't slow you down. So either you need to look things up rarely (as you say you are), write tools for looking things up quickly, or both.

What I can never remember are the exact APIs to library functions. For libraries without man pages, I have written command-line tools that get me the relevant API doco quickly (e.g., as quickly as I can type lh file:read into a shell window).

link|flag
vote up 0 vote down

Nope, not at all.

Look at the bookshelf (or desk) of any writer. You will find at least one style manual that they use to look up grammar, punctuation and such. Same deal with programmers.

Sometimes more 1337 programmers with more time than brains can try to make you feel small if you have to look something up. Opt out of that.

Wait, should I have said "1337" or "133t" or "l33t"? Gotta go look that up...

link|flag
vote up 0 vote down

I don't think looking up syntax makes you a bad programmer... but if you're not careful, intellisense can rot your brain.

If i was learning a new language, and I kept my pocket dictionary with me to have a basic conversation, I would definitely lack in efficiency.

And if my pocket dictionary's batteries failed... so help me.

link|flag
vote up 0 vote down

If I were you I'd be more concerned about how you are using the language to solve problems than whether the syntax is committed to memory. I remember how to use calculus but I have to look up specific formulas. Don't sweat it.

link|flag
vote up 1 vote down

I still use a dictionary. I hope that doesn't make me bad at English... ;)

I look up syntax all the time. I think its a very normal thing for programmers of all skill levels.

link|flag
vote up 0 vote down

No. There is nothing wrong with locating/looking up syntax. If it wasnt for intellisense, 99% of .NET developers would be pounding the F1 key all the time to locate the name/signatures of methods for most code they write on a daily basis. To paraphrase the Pragamatic Programmers - Its not a matter of "if" we will forget programming syntax as much as a matter of "when".

I wrote C++ everyday for 15 years prior to 2003 when I switched over to C#/.NET. I darest to say that I could write error free syntax for C++ beyond the most basic of Hello World codes today.

link|flag
vote up 3 vote down

No, programming isn't (and shouldn't necessarily) be a memory test - it should be a logic test. Nail the logic, then nail the code.

link|flag
vote up 0 vote down

I would agree with everyone else, except for terminology. If a coder is only working with one language, and is supposed to be an expert on that limited area, then there should be less looking up of code, as you can look at what you have done before and reuse.

But, if a programmer is someone that may work in multiple languages then it would be silly to expect that you know all the .NET, Java, PHP and Pythons libraries, and a waste of braincells, as Google can replace memory so well. :)

But, you should have an idea how to use the different topics, for example, when to use Func<>() instead of Action<>().

It does get trickier now, as we have functional programming being mixed in with OOP, so now we have multiple programming concepts being mixed up in one application.

link|flag
vote up 0 vote down

No. No it doesn't.

link|flag
vote up 1 vote down

What I've always felt about coding is, its about solving problem/making life easier, and memorizing 10 overloads for StringBuilder in C#, or being able to remember every single way one can create a DataSet or any other object for that matter is not a must, a quick F1 solves the the problem in most cases and IntelliSense is a major help,

when I interview someone for a coding position, the very last thing I'd want to ask ask is list 10 ways to connect to a sqldatabase and pull something out, it usually takes about 15-30 seconds to google it and is in now way a deal breaker (or maker),

A good coder can take a big problem and break in to smaller manageable chunks, and gets stuff done.

a great reference for someone trying to become/find a good coder,

http://www.joelonsoftware.com/articles/GuerrillaInterviewing3.html

link|flag
vote up 6 vote down

No, it makes you human :)

link|flag
vote up 1 vote down

Looking up syntax, whether or not you're familiar with it, can always reveal something new about it - So no, it's not a bad thing.

For instance, looking up a function you're already familiar with might reveal a new usage scenario, a new parameter it might accept, a recent improvement to its implementation, or plans to deprecate it in favour of something else. It could even point you in the direction of a more efficient or elegant way of doing what you're trying to do.

As long as you're not so detached that you fail to pay attention during your initial syntax lookup, so as to waste time looking it up over and over again, it should be fine.

link|flag
vote up 2 vote down

It will make you slower, but modern languages are so extensive that it's an exceptional person who can hold the whole syntax in their head.

It's to be expected that you'll be most confident in the areas you are most familiar with, and least confident in areas you've just started to explore. With time and practice you'll become more fluent and will have to look up less and less.

IntelliSense, auto-completion and tools like ReSharper are both a help and a hindrance. They help to remind you of what could come next, but do stop you remembering for yourself.

The worst interview I ever had was where they expected me to write perfect code on a white-board - I just couldn't do it.

link|flag
vote up 1 vote down

No. There is always going to be syntax and libraries you do not know. The trick is to know they are there so you can use them when you need them. Just-in-time learning is the way to go.

link|flag
vote up 11 vote down

Invert the question. If you knew all the syntax for all the languages in the world, would it make you a good programmer? Probably not...

link|flag
2  
Although, it would be pretty cool to know all the syntax for all the languages in the world ;-] – Daniel LeCheminant Apr 22 at 21:29
Do all programming languages include assembly? ;-) – Lucas McCoy Apr 22 at 21:30
Very good points :) – dotnetdev Apr 22 at 22:12
vote up 14 vote down

It could also indicate you've been using many different languages with different syntax -- which by itself could actually indicate more experience or a better programmer. :-)

link|flag
I agree with this, when I work in PHP and C I have to look up PHP functions else I get confused, as they are similar. – James Black Apr 22 at 21:50
+1 When you bounce around between C#, Java, JavaScript, C, Perl, etc frequently, you really can't remember them all perfectly. Else we wouldnt need intelisence! – rally25rs Apr 22 at 22:26
I have had to use google a lot to find function equivalents – Samuel Apr 22 at 22:30
1  
It's not called "intellisence", it's called "auto-completion". Intellisense is just the marketing term Microsoft uses for this feature in Visual Studio. – foljs Apr 22 at 22:49
true foljs, but they all work differently, intellisense is always popping up on every dot and space, but other packages require the programmer to bring it up. – Atomiton Apr 22 at 23:26
vote up 3 vote down

Looking up syntax is the only possible way to learn. There is no way to code without looking SOMETHING up.

link|flag
vote up 11 vote down

Recognizing self ignorance and compensating proactively through research is a sign of a good programmer (and a good human being).

link|flag
vote up 1 vote down

I always use the 'macro' function in Xcode to create a try/catch block.. I'm just to lazy to remember how. I'm not sure if I already am a bad programmer, but I do not have the feeling that using this cheat makes me worse.

In fact, it is more efficient to look it up (in seconds) and have it right the first time, then to try over and over again until it compiles.

I think it makes you a bad programmer if you do not look up things you do not know.

link|flag
vote up 29 vote down

Of course not. If I had to count everytime I used google to look for a piece of code, then I would be counting for the next 10 days.

A good quote comes to mind: "Good programmers write good code, Great programmers steal good code."

link|flag
2  
Are you being ironical? That's Picasso. "Good artists copy, Great artists steal" – Chad Grant Apr 22 at 23:15
@Deviant: Ok I lied, I got it off of Jeff Atwood's Blog. – Lucas McCoy Apr 22 at 23:40
I also think Steve Jobs once said that about Xerox, Apple and the GUI :) – Jacob Stanley Apr 23 at 2:51
like someone at catonmat.net says "good coders code, great reuse" – Peteris Krumins Apr 23 at 14:11
vote up 0 vote down

No, it doesn't. Although it shows that you are not experienced in that particular area (for example in your case lambda expressions).

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.