DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workkloads.

Secure your stack and shape the future! Help dev teams across the globe navigate their software supply chain security challenges.

Releasing software shouldn't be stressful or risky. Learn how to leverage progressive delivery techniques to ensure safer deployments.

Avoid machine learning mistakes and boost model performance! Discover key ML patterns, anti-patterns, data strategies, and more.

Related

  • The Role of Functional Programming in Modern Software Development
  • Best Ways to Write Clean and Quality Python Code
  • A Guide to Constructor Chaining in Java
  • Magic of Aspects: How AOP Works in Spring

Trending

  • A Complete Guide to Modern AI Developer Tools
  • Hybrid Cloud vs Multi-Cloud: Choosing the Right Strategy for AI Scalability and Security
  • Solid Testing Strategies for Salesforce Releases
  • Internal Developer Portals: Modern DevOps's Missing Piece
  1. DZone
  2. Culture and Methodologies
  3. Methodologies
  4. How and Why Does Top-Down Programming Work?

How and Why Does Top-Down Programming Work?

While not as popular as it once was, top-down programming still provides structure, hierarchy, and organization to developers who might be adrift otherwise.

By 
Ashley Kornee user avatar
Ashley Kornee
·
May. 12, 17 · Opinion
Likes (10)
Comment
Save
Tweet
Share
38.6K Views

Join the DZone community and get the full member experience.

Join For Free

Top-down programming might be out of vogue, but that doesn’t mean it doesn’t have its merits. In fact, I would argue that for some people top down programming might indeed be the best way to program. Not for everybody, mind you, but certainly for some people.

What’s more, it might also be a better solution for some kinds of problems than for others. And that is ultimately what programming is about, solving problems.

In a Nutshell

Top-down programming starts at the top and then works its way down. Or, as Wikibooks puts it, “A top-down approach (also known as stepwise design) is essentially the breaking down of a system to gain insight into the sub-systems that make it up. In a top-down approach, an overview of the system is formulated, specifying but not detailing any first-level subsystems.”

So you start at the most abstract level, by defining the problem, and from there add more details. It’s a bit like starting with an outline and then filling things in as you go until you have a story.

From Abstract to Program

So, let’s say that you want to create a program that plays checkers, but you don’t know where to start. Well, when you’re working with top-down systems you do.

You just write: PlayCheckers( ); 

Of course, that doesn’t mean anything yet, as you don’t have a ‘play checkers’ procedure. But you have defined the problem and can now move to the next level down.

Here you might write:

PlayCheckers()
{
    setupboard();
    do to end of game {
        player1Move();
        player2Move();
    }
};


Now, obviously this still does not give you an actually working game, but it has defined the problem down still further. Yes, none of these operations will tell the computer what to do yet, but that’s okay. What matters is that you know what to do. What the computer has to do will come later.

Yes, it might take a while before you get to the actual code that the computer can interpret and understand, but when you get there you have a very accurate framework that you can interpret and you can understand – and ultimately, which is more important?

Well, obviously having code that the computer can understand, because otherwise it’s not working problem, but you get the idea. You can’t change the code that you can’t understand, while code the computer can’t yet understand is just a few steps away from a fully functioning program.

Divide and Conquer

What’s more, this kind of setup allows you to easily break up a project that seems insurmountable into something that has manageable pieces which have clearly defined parts. Don’t underestimate the power of this technique!

You see, I’ve found that defining the project is often one of the most fundamental steps you need to do if you want to make sure you don’t end up staring at the wall and procrastinating. It really doesn’t matter if we’re talking about programming or writing your dissertation (if you don’t want to use a dissertation writing service, anyway).

The thing is, with programming, it has the extra advantage that it takes something that can often be arcane and quite finicky and turn it into something that has logical well-defined steps that even a person starting out in the field can understand.

Now that has something to be said for it, right?

Now for the Downsides

This kind of programming does have its downsides. Of course, it does. If it was perfect, it wouldn’t have gone out of vogue, would it? So, for example, you might drill down from the top level to a level where you find a step you simply don’t know how to implement.

Alternatively, you might do a bad job in dividing up your plan. Maybe you didn’t think about it correctly and you divide a task into two in a way that it shouldn’t be divided, for example. Then, when you try to execute that lower level step, you find it to not be possible because you made a higher-level problem.

Now, if you discover that late in the programming game, you could be in for a lot of trouble. But then, sloppy thinking can always get you into trouble.

One of the bigger problems is that this requires a very hierarchical way of structuring your code. Information flows top down and bottoms up throughout the hierarchy, without a real guide as to how that information should be organized. This is where object-oriented programming has the advantage.

I have also heard people complain that this kind of programming can be kind of rigid, with it being hard to rewrite certain parts of the code. I don’t exactly buy this argument. Because if you do this type of coding correctly, then the only communication between the different parts of the program are through defined parameters.

And the Big One

What is a problem that you’ll find with top-down programming is that you’ll find yourself naturally following certain grooves that you've become used to following in the past. That makes sense, because if you solved a problem in some way in the past, then naturally you’re going to define and solve it in a similar way this time around.

Of course, the problem with that is that you might not see other solutions to the problems that are out there, which might be far more efficient and innovative. This is where other forms of programming can be superior to top-down programming.

Last Words

That said, there are still plenty of types of programming for which a top-down approach offers you a clearer idea and a better framework to get your code written down.

That’s why programmers who prefer to think abstractly about a problem or who can’t think of a solution in some way using different forms of programming should definitely give top-down programming a try.

It might be just the slightly different way to look at things they need to get past a problem that otherwise might have been unsolvable. Even if it isn’t, it’s always a good idea to try new things. You never know what you’ll learn by doing so.

Object-oriented programming Waterfall model code style

Opinions expressed by DZone contributors are their own.

Related

  • The Role of Functional Programming in Modern Software Development
  • Best Ways to Write Clean and Quality Python Code
  • A Guide to Constructor Chaining in Java
  • Magic of Aspects: How AOP Works in Spring

Partner Resources

×

Comments
Oops! Something Went Wrong

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends:

Likes
There are no likes...yet! 👀
Be the first to like this post!
It looks like you're not logged in.
Sign in to see who liked this post!