Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9191117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T20:36:31+00:00 2026-06-17T20:36:31+00:00

I have worked in low level C programming for years and I don’t have

  • 0

I have worked in low level C programming for years and I don’t have enough exposure to Object oriented approaches. In C if I was developing some layered architecture then each layer has interfaces defined by function pointers. The advantage of that the whole layer can be replaced by just setting those function pointers at initialization to another layer.

I want the same thing but this time in Python. What is the coolest way to achieve that. To give a little background to my problem, I have a data generator which can output records to different mediums. The medium is specified at the configuration time. I don’t want to use if or switch statements here. The best way was to use function pointers in C but what are the options available here in Python. Any Object oriented approaches are also appreciated.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T20:36:33+00:00Added an answer on June 17, 2026 at 8:36 pm

    Python supports functions as a first-class data type. So you can do something like:

    def foo(x):
        print("foo: " + x)
    
    def bar(x):
        print("bar: " + x)
    
    f = foo
    f("one")
    f = bar
    f("ten")
    

    prints

    foo: one
    bar: ten
    

    This is very similar to your experience with function pointers in C. Although Python certainly supports more elaborate object-oriented programming styles, you are under no obligation to use them.

    An example using classes, where you can group related functions together:

    class Dog:
        def noise(self, x):
            print("bark! " + x)
        def sleep(self):
            print("sleeping on floor")
    
    class Cat:
        def noise(self, x):
            print("meow! " + x)
        def sleep(self):
            print("sleeping on keyboard")
    
    a = Dog()
    a.noise("hungry")
    a.sleep()
    
    a = Cat()
    a.noise("hungry")
    a.sleep()
    

    This version prints:

    bark! hungry
    sleeping on floor
    meow! hungry
    sleeping on keyboard
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have worked on generating PDF about 3 years ago and used FPDF lib
As a kind of opposite to this question: Is low-level embedded systems programming hard
New to ASP.NET MVC and programming, and I have searched high and low for
i have worked for a year now , on server side applications and everytime
I have worked with Apache before, so I am aware that the default public
I have worked on this problem for my entire day and can't solve it.
I have worked within a web development company where we had our local machines,
I have worked with SOAP in SAAJ and JAXM, and I want to extend
I have worked with pointers a lot, but still whenever I work with them,
I have worked many projects with no problems. But in current project, I tested

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.