DEV Community

Julia Torrejón
Julia Torrejón

Posted on

How would you define high quality code?

What would be the main attributes of good code?

Oldest comments (58)

Collapse
 
fabe profile image
Fabian Schultz

There's a really great chapter about this in "Game Programming Patterns" by Robert Nystrom:

For me, good design means that when I make a change, it’s as if the entire program was crafted in anticipation of it. I can solve a task with just a few choice function calls that slot in perfectly, leaving not the slightest ripple on the placid surface of the code.

That sounds pretty, but it’s not exactly actionable. “Just write your code so that changes don’t disturb its placid surface.” Right.

Let me break that down a bit. The first key piece is that architecture is about change. Someone has to be modifying the codebase. If no one is touching the code — whether because it’s perfect and complete or so wretched no one will sully their text editor with it — its design is irrelevant. The measure of a design is how easily it accommodates changes. With no changes, it’s a runner who never leaves the starting line.

Be sure to read the whole thing!

Collapse
 
ben profile image
Ben Halpern

I like this a lot. "Accommodation to changes" accounts for readability, organization, testing, and a lot of other things bundled in.

Coding only for the problem at hand right now: Bad.
Coding for every possible future need: Bad.
Coding to solve current problems while being accommodating towards future modifications: Good.

Collapse
 
juliatorrejon profile image
Julia Torrejón

Coding for every possible future need: Bad.

I have seen this scenario a few times and it obviously delays the whole project because requirements keep changing and so does the code.

Collapse
 
alephnaught2tog profile image
Max Cerrina

This. There are few things that I feel like are as satisfying as being like "Oh crap, I need to make sure it can handle ABC" or "I need to change it for this new thing" and realizing you wrote it such that sure, it does need to change somewhere, but it has that capability for change without things getting messy. The opposite of having to add more and more logic to handle cases.

Collapse
 
juliatorrejon profile image
Julia Torrejón

A few points taken from Robert Nystrom are:

  • Key goal of software architecture: minimize the amount of knowledge you need to have in-cranium before you can make progress.
  • Get problem -> Learn Code -> Code Solution -> Clean up
  • Change to one piece of code doesn’t necessitate a change to another. We obviously need to change something, but the less coupling we have, the less that change ripples throughout the rest of the game.
  • Good architecture makes a huge difference in productivity. It’s hard to overstate how profound an effect it can have.
  • Good architecture takes real effort and discipline. Every time you make a change or implement a feature, you have to work hard to integrate it gracefully into the rest of the program. You have to take great care to both organize the code well and keep it organized throughout the thousands of little changes that make up a development cycle.
  • You have to think about which parts of the program should be decoupled and introduce abstractions at those points. 
  • Writing well-architected code takes careful thought, and that translates to time. Maintaining a good architecture over the life of a project takes a lot of effort. You have to treat your codebase like a good camper does their campsite: always try to leave it a little better than you found it.
  • Design requires a lot of experimentation and exploration. Especially early on, it’s common to write code that you know you’ll throw away.
  • If there is any method that eases these constraints, it’s simplicity. In my code today, I try very hard to write the cleanest, most direct solution to the problem. The kind of code where after you read it, you understand exactly what it does and can’t imagine any other possible solution.
Collapse
 
tux0r profile image
tux0r

It is written in C.

Collapse
 
juliatorrejon profile image
Julia Torrejón

Could you explain why?

Collapse
 
alanmbarr profile image
Alan Barr

I think what complicates this question for me is the intent of the code and future usage which is hard to predict. As a business owner I want the best bang for my buck to get to market as quickly as possible. As a maintainer of software my viewpoint is going to be more on how I can transition something over time. Very rarely am I thinking of how elegantly a solution is solved than how does it fit in an overall architecture.

Collapse
 
juanfrank77 profile image
Juan F Gonzalez

High quality code is the one that has a low wtf/hour ratio

Collapse
 
cjbrooks12 profile image
Casey Brooks

😅wtf/min

Collapse
 
juanfrank77 profile image
Juan F Gonzalez

Exactly so, although I think that per minute would be a really big number hahaha.

Collapse
 
martinhaeusler profile image
Martin Häusler

This is the one and only true metric for good code quality. It never fails.

Collapse
 
juliatorrejon profile image
Julia Torrejón

An interesting point from Gridshore on this:

The most effective and certain method, however, is the code review. However, it is also very time consuming. It requires that one or more developers restrain from being (in the eyes of the customer) productive and give their attention to someone else’s code. Provided that the developer has a high standard of quality, it will definitely improve total quality of the code. Of course, there is the concept of pair programming, which could be seen as a form of continuous code reviewing. Highly effective, and can improve the skills of both developers.

These tools and processes can be very useful, but their overall efficiency depends on one thing: quality awareness within your development team. I’ll explain what I mean with “quality awareness”. It is the ability of developers to recognize code smells or failure to use design patterns at locations where they would typically be applied. This awareness it typically raises as developers gain more experience, but we’d typically like to help fate a little hand.

Collapse
 
revskill10 profile image
Truong Hoang Dung • Edited

To me, high quality code means less lines of code, but has more power. That power might be a useful abstraction, or it's just a useful algorithm to solve repeatable problems.
And if you want more quality of your code, make it easy to test, the easier to test a code block, the more quality that code block has.
And if you want even more quality of your code, make it fast. If your language couldn't make it fast enough, change the language.

Collapse
 
juliatorrejon profile image
Julia Torrejón

How can you make your code faster?

Collapse
 
revskill10 profile image
Truong Hoang Dung • Edited

"Make it fast" means you should use better algorithms or data structures to solve the problem. Because as you know, to solve one problem, there're many ways to do it. So it's also called optimization of the code to use better libraries, for example.

Collapse
 
jeikabu profile image
jeikabu

Definition:

  • More theoretical ideal; perfection is not attainable
  • "Good" implies partially subjective
  • Not binary.; there are many states in-between
  • Not absolute; varies over time

Attributes:

  • Well designed without being over-engineered
  • State of the art, but not obscure or overtly clever
  • Documented, but no superfluous comments
  • Reviewed and refactored within time-constraints
  • Optimal in time and space while avoiding premature optimization
  • Meets business/technical requirements and common sense
  • Leverages tools of the trade (testing, static analysis, etc.) if/when appropriate
  • Maintainable and extendable in accord to its purpose

It's like art vs obscenity; I know it when I see it.

Collapse
 
juliatorrejon profile image
Julia Torrejón
  • Reviewed and refactored within time-constraints

So, what would be the optimal time? Or is it somehow subjective depending on the circumstances?

Collapse
 
jeikabu profile image
jeikabu • Edited

It's subjective and variable depending on the circumstances:

  • Skill and experience of the author (I tend to gloss over PRs by people that do consistently good work)
  • Difficulty/importance of changes
  • ROI for additional time spent etc.

There's an implicit assumption that you can't spend "forever" on a piece of code; at some point it's got to be "good enough" so you can move on. It's also subject to diminishing returns.

Collapse
 
cjbrooks12 profile image
Casey Brooks

The projects I've worked with that had the best codebase to them actually made it difficult to write bad code with it. Bad code typically comes when there is too much going on and it is not well abstracted, so developers have trouble understanding it and end up writing more bad code, making the problem even worse.

In contrast, a good codebase has very clearly-defined structures and well-architected patterns that guide you toward the solution intended by its creators.

For example, Laravel was created for a specific purpose, and every API it opens up to developers drives you right where it wants you. You really have to put in a lot of work to use Laravel in any way other than it was designed for, and the way it encourages you to develop in it feels very natural and clean. The underlying codebase of Laravel is what I consider to be the best codebase I've ever seen and worked with.

Comparatively, Android's codebase is a bit of a mess. Don't get me wrong, I love Android and it is my favorite platform to develop for, but its codebase is messy and confusing, needlessly complex, often contradictory, and with very little direction given to the developer. It is definitely getting better now that it has matured the core framework, with Google starting to focus on better APIs for UI components and a more opinionated approach with Jetpack, but I still struggle to understand how most of the internal classes work, no matter how long I study their code.

Collapse
 
juliatorrejon profile image
Julia Torrejón

Therefore, a good codebase is the base of good code, isn't it? :)

Collapse
 
thecodetrane profile image
Michael Cain

Personally, the more that code reads like prose, the higher quality it is. High quality code tells you the story about the business solution that it is implementing.

My favorite code is that which reveals to me something about the business that I did not previously know. Plus, like businesses, it’s written in a way to accommodate the future only when the future arrives.

Collapse
 
ogfris profile image
Fris

Some books might define it as "high quality code is when you don't break your software while doing small changes", which is totally not true, if you designe your program to play music, it shouldn't play movies too. For me, high quality code is when your codes are optimized, easy to read and well organized.
If you're afraid of not having a quality code then don't worry, i myself had some very bad habits of writing everything in one file 3 years ago but i fixed it as soon as i realised how hard it was for other people to read my codes. I fixed it with habits, you start by trying to write a well organized file then repeat it with every project you make until it becomes a habit.

Collapse
 
vonheikemen profile image
Heiker

In my opinion "good" code is the one that is disposable. Is a codebase where you can identify with confidence the parts that need to be changed or removed in order to make a new feature or meet a new requirement.

You won't necessarily recognize it when you see it or when you write it for the first time, but you'll know when the times comes and you have to mantain it.

Collapse
 
joshichinmay profile image
Chinmay Joshi
  1. Easily accessible - simple file structure and well organised
  2. Self-explanatory - meaningful names for files, variables, methods, etc.
  3. That doesn't mean commented code is unacceptable.
  4. Aesthetics - Well indented - tabs size, spaces, etc.
  5. With test cases.
  6. Reviewed by collaborators.
  7. Readable. Not over optimised.
Collapse
 
alainvanhout profile image
Alain Van Hout • Edited

I'm going to use the #likeimfive approach here.

If code is like cake, then good code is like cake that you can enjoy eating and that will not leave you with stomach aches later on.

Note that 'doing what it is supposed to' is not an attribute of good code any more than 'being edible' is an attribute of good cake. That's just a fundamental real-world requirement for when someone asks you to write code / bake a cake. It doesn't have anything to do with either of those being good.

Collapse
 
devcamilla profile image
Camilla Santiago

Just to highlight.. so you mean cake is considered good based on the experience of eating it.

Collapse
 
alainvanhout profile image
Alain Van Hout

In the case of cake, yes. How that translates to code is that code is also experienced as being good by how you interact with it later, i.e. modifying it in any way (rather than just looking at it).

Collapse
 
inthetubes profile image
Master Splinter

It works and was on time.

Collapse
 
zevenberge profile image
Zevenberge

One way to measure good code is that you need the knowledge of your problem to solve it, but no more. For example, if you need to fix a bug regarding to who financial transactions are sent, you obviously need to know which beneficiary to use in each use case. You should not need to worry about algorithms calculating the amount sent or interaction with external systems. This allows the developer to focus on one problem and one problem only.
Quite often this is achieved by modular abstractions, e.g. hide the external system behind an interface and supply the transferred amount through classes with calculated getter properties.

Collapse
 
thomasjunkos profile image
Thomas Junkツ

High quality code is code written by someone who cares.

What does it mean to care?

  • Knowing the language beyond the syntax, i.e. writing concise ideomatic code

  • Naming things in a way which helps understanding the purpose of things

  • Grouping things together, which belong together

Or as Ward Cunningham once put it:

You know you are working with clean code when each routine you read
turns out to be pretty much what you expected. You can call it beautiful
code when the code also makes it look like the language was made for the problem.

I heared once, that instead of naming it »software engineering« it should be renamed to »software gardening«. This would connotate the constant effort which has to be put into a codebase in order to keep it beautiful and keep weeds at a minimum.

Some comments may only be visible to logged-in visitors. Sign in to view all comments.