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

  • SEARCH
  • Home
  • 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 6734937
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:56:56+00:00 2026-05-26T10:56:56+00:00

Possible Duplicate: What are the differences between struct and class in C++ In C++

  • 0

Possible Duplicate:
What are the differences between struct and class in C++

In C++ is there any reason to use a Struct inside of a Class outside of making your own linked list or b-tree?

I’ve taken a few programming courses in college, but haven’t really thought about this until now. It seems like there wouldn’t be any benefit from using a struct inside of a class, but I don’t have enough experience to know what situations really require certain things. I’m hoping that you experienced programmers can shed some light on this for me.

  • 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-26T10:56:57+00:00Added an answer on May 26, 2026 at 10:56 am

    Here is a complex scenario: records of sub-records.

    struct Title_Record
    {
        unsigned int id_title;
        std::string  title_text;  // std::string is actually a struct / class.
    };
    
    struct Category_Record
    {
        unsigned int id_category;
        std::string  category_text;
    };
    
    // A record of [id_ingredient, id_title, id_category],
    class Ingredient_Entry
    {
        unsigned int id_ingredient;
        Title_Record  title;        // Use ID field only for storing in database (foreign key).
                                    // But also contain the record for local access.
        Category_Record  category;  // Use ID field only for storing in database (foreign key).
    

    .
    };

    Every ingredient entry has a title and a category. The title and categories are separate records so that ingredients can share common titles and categories.

    Usage:
    Title_Record title_table[30]; // Database table of 30 titles.
    Category_Record category_table[30]; // Database table of 30 categories.

    Remember that the keywords struct and class only differ in their default accessibility.

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

Sidebar

Related Questions

Possible Duplicate: What are the differences between struct and class in C++ http://www.cplusplus.com/reference/std/typeinfo/type_info/ I
Possible Duplicate: Differences in string compare methods in C# Is there any difference between
Possible Duplicate: What are the differences between struct and class in C++ If the
Possible Duplicate: C/C++ Struct vs Class I know the technical differences between a struct
Possible Duplicate: What are the differences between struct and class in C++ I used
Possible Duplicate: What are the differences between struct and class in C++ I've done
Possible Duplicate: Difference between 'struct' and 'typedef struct' in C++? Is there a difference
Possible Duplicate: Difference between declaring variables before or in loop? Is there any (or
Possible Duplicate: Real differences between “java -server” and “java -client”? I've seen the argument
Possible Duplicate: What are the specific differences between .msi and setup.exe file? I am

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.