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

A comprehensive summary of the introduction to object-oriented programming in C++

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

This article introduces the relevant knowledge of "A comprehensive summary of the introduction to object-oriented programming in C++". Many people will encounter such a dilemma in the operation of actual cases, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Class 1. The difference between struct and class

From the perspective of C language, a class is a structure that can call its own members. In C++, the keyword struct, though still retained, is no longer a structure in C, but represents a class shared by default members.

That is, in C++, there is no difference between struct C {/ * code*/} and class C {public:/**/}. For example, the following two sets of code implement exactly the same function.

/ / default member public struct Number {private; float val;public: float pubVal; Number (float inVal);}; / / default member is private class Number {float val;// external cannot directly access public: float pubVal; Number (float inVal);}

A private member is a member that is inaccessible to external functions.

Void printPublic (Number num) {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

Development

Wechat

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

12
Report