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

What is the NVI mechanism of C++ programs?

2025-03-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces the relevant knowledge of what the NVI mechanism of C++ program is, the content is detailed and easy to understand, the operation is simple and fast, and it has certain reference value. I believe you will gain something after reading this article on the NVI mechanism of C++ program. Let's take a look at it.

1. Brief introduction

We can see this phenomenon in the standard C++ library:

Six public virtual functions, all of which are std::exception::what () and their overloads.

142 non-public imaginary functions.

What is the purpose of this design, and why do you "superfluously" set the virtual function to non-public?

This is what the NVI mechanism requires: declare virtual functions as non-public and declare public functions as non-virtual-either virtual or public.

two。 Mechanism analysis

Programmers often publicize virtual functions in the base class to provide a definition of an interface (the work of virtual) as well as its implementation (a concrete implementation).

Class Base {public: virtual void Foo (int) {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

  • How to use css to realize wavy line and cube

    This article is about how to use css to implement wavy lines and cubes. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look. 1.css realizes the wavy line html

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

    12
    Report