Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to store properties and methods in C++

2025-03-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

Today, I will talk to you about how to store properties and methods in C++, which may not be well understood by many people. in order to make you understand better, the editor has summarized the following. I hope you can get something from this article.

Content introduction:

For a Class in C++, how on earth are its internal data and methods stored? Do you store both data and methods in a single object in Class, or do you store data and methods separately? As shown in the following figure:

The answer is figure 2, each object takes up storage space only in the data part of the object (virtual function pointers and virtual base class pointers also belong to the data part), and the function code belongs to the common part, so in Class storage, the data part is associated with the object, and the function part is stored in a common place.

Code example:

# include using namespace std

Class Node {public: int age; string name; void print ();}; void Node::print () {cout

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report