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 754137
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T14:58:40+00:00 2026-05-14T14:58:40+00:00

I have a large framework consisting of many C++ classes. Is there a way

  • 0

I have a large framework consisting of many C++ classes. Is there a way using any tools at runtime, to trace all the C++ objects that are being constructed and currently exist?

For example, at a certain time t1, perhaps the application has objects A1, A2 and B3, but at time t2, it has A1, A4, C2 and so on?

This is a cross platform framework but I’m familiar with working in Linux, Solaris and (possibly) Mac OS X.

  • 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-05-14T14:58:40+00:00Added an answer on May 14, 2026 at 2:58 pm

    You can inject code in the destructor and constructor of the objects that you want to count:

    SomeObject::SomeObject() {
       ++globalSomeObjectCounter;
    }
    
    SomeObject::~SomeObject() {
       --globalSomeObjectCounter;
    }
    

    Don’t forget to increase the counter in all constructors (copy constructors, etc.)

    EDIT: In this situation one can use the curiously recurring template pattern:

    template <typename T>
    struct Counter
    {
        Counter() {++counter;}
        virtual ~Counter() {--counter;}
        static int counter;
    };
    template <typename T> int Counter<T>::counter(0);
    

    and then:

    class SomeObject : public Counter<SomeObject> {
    }
    

    to automatically generate a counter for each class type.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a large tree of Java Objects in my Desktop Application and am
I have a large application (~50 modules) using a structure similar to the following:
I have two large framework libraries, whose header files are included in my project.
I have a large list of users that registered through a website without any
I'm working on a large PHP (Yii framework) web application where users have accounts
I have a rather large save routine that updates hundreds of items using the
I have a large Compact Frameworks V2.0 application that in most cases works very
I have large data sets (10 Hz data, so 864k points per 24 Hours)
I have large batches of XHTML files that are manually updated. During the review
I'm developing a website in PHP and I have large JS files that I

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.