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

Why is proper abstraction better than using language functions directly in C++?

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

Share

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

This article mainly explains why proper abstraction in C++ is better than using language functions directly. Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Next, let the editor take you to learn why proper abstraction in C++ is better than using language functions directly.

ES.2: proper abstraction is better than direct use of language features

Reason (reason)

"appropriate abstraction" (such as libraries or classes) is closer to the application concept than using language functionality directly, resulting in shorter, clearer code that is likely to be better tested.

Example (sample)

Vector read1 (istream& is) / / good

{

Vector res

For (string s; is > > s;)

Res.push_back (s)

Return res

}

More traditional, low-level, almost equivalent code will be longer, more cluttered, more difficult to guarantee correctness, and most likely slower.

Char** read2 (istream& is, int maxelem, int maxstring, int* nread) / / bad: verbose and incomplete

{

Auto res = new char* [maxelem]

Int elemcount = 0

While (is & & elemcount < maxelem) {

Auto s = new char [maxstring]

Is.read (s, maxstring)

Res [elemcount++] = s

}

Nread = & elemcount

Return res

}

Once overflow checking and error handling are added, the code becomes messy, and there is also the problem of remembering to destroy the returned pointers and C-style strings contained in the array.

Enforcement (implementation recommendations)

Not easy, not easy. Looking for messy loops, nested loops, long functions, missing function calls, rarely used built-in types? Or confirm cyclomatic complexity?

At this point, I believe you have a deeper understanding of "why proper abstraction in C++ is better than using language functions directly". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

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