C++怎么使用T*或onwer<T*>指明唯一对象

发布时间:2021-11-26 13:43:17 作者:iii
来源:亿速云 阅读:223

这篇文章主要介绍“C++怎么使用T*或onwer<T*>指明唯一对象”,在日常操作中,相信很多人在C++怎么使用T*或onwer<T*>指明唯一对象问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”C++怎么使用T*或onwer<T*>指明唯一对象”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

F.22: Use T* or owner<T*> to designate a single object(使用T*或owner<T*>指明唯一对象)

Reason(原因)

Readability: it makes the meaning of a plain pointer clear. Enables significant tool support.

可读性:这可以让裸指针的含义更明确。使重要的工具支持有效。

译者注:owner<T*>是gsl(准则支持库)提供的一个功能,从编译的角度来看和T*的含义一致,但是附加了所有权语义,可以帮助程序员理解代码和工具检查。

Note(注意)

In traditional C and C++ code, plain T* is used for many weakly-related purposes, such as:

在传统的C和C++代码中,裸指针用于很多没有什么关系的目的,例如:

This makes it hard to understand what the code does and is supposed to do. It complicates checking and tool support.

这样做的结果是很难理解代码在做什么和被预期做什么。无论是检查还是工具支持都会复杂。

Example(示例)

void use(int* p, int n, char* s, int* q){    p[n - 1] = 666; // Bad: we don't know if p points to n elements;                    // assume it does not or use span<int>    cout << s;      // Bad: we don't know if that s points to a zero-terminated array of char;                    // assume it does not or use zstring    delete q;       // Bad: we don't know if *q is allocated on the free store;                    // assume it does not or use owner}

译者注:这可能是我们每天都能见到的指针用法,很难看出它们到底是前面提供的那种用法。

better(稍好)

void use2(span<int> p, zstring s, owner<int*> q){    p[p.size() - 1] = 666; // OK, a range error can be caught    cout << s; // OK    delete q;  // OK}

Note(注意)

owner<T*> represents ownership, zstring represents a C-style string.

owner<T*>表现所有权,zstring表达C风格的字符串

Enforcement(实施建议)

到此,关于“C++怎么使用T*或onwer<T*>指明唯一对象”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!

推荐阅读:
  1. C++教程 零基础如何学习C语言!
  2. C++和Java中static关键字有什么区别

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

c++

上一篇:C++中为什么不要解引用无效指针

下一篇:C#如何实现基于Socket套接字的网络通信封装

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》