开发者

What is "production-level code"? [closed]

开发者 https://www.devze.com 2023-01-19 07:58 出处:网络
Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed. This question is off-topic. It is not currently accepting answers.

Want to improve this question? Update the question so it's on-topic for Stack Overflow.

Closed 10 years ago.

The community is reviewing whether to reopen this question as of 16 days ago.

Improve this question

This isn't quite a technical question, but I've noticed a lot of job postings that ask for experience 开发者_如何学Cwriting production level code. I've been assuming that this is just opposed to, for instance, testing code. What, specifically, does the term "production-level code" mean?


Production-level code has many attributes that example code or code from throwaway projects would not have. Such as

  • error handling
  • edge case condition handling
  • portable to multiple platforms
  • well thought out naming of variables, functions, methods, classes, parameters, etc.
  • testability
  • documentation
  • optimizations for code space or speed
  • user interface considerations

as opposed to many text book examples which state things like "error handling not shown for simplicity".


It's to signify the difference between code you might write at university/school/for fun and code you write for money; mostly just attention to detail but the change is noticeable.


It means that the company recently hired someone who wrote garbage and that they're trying to keep it from happening again.


If someone asked me in an interview about "production level code", I would reference projects based on my current/past job experience. This would be projects for companies that are detailed on my resume. This could also include CodePlex or other similar projects where a stable working build has been released for consumption by other people.

I wouldn't talk about demos, proof-of-concepts, etc., etc...I would talk about projects that were written, deployed and used by someone else.


Often 'production-level code' can mean your ability to use software development tools such as source code control or testing/validation as opposed to a student who has often only used an IDE or command line tools for small projects.


I've known a couple of people that never got any substantial code into production releases of anything. Building lots of prototypes is neat and fun and all, but until you release and support code, it's all a theoretical exercise.

It may be that people who placed those postings don't want that kind of 'experience'.

0

精彩评论

暂无评论...
验证码 换一张
取 消