- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 C++ 项目,其中 clang-tidy
建议添加[[nodiscard]]
到处。这是一个好习惯吗?我的理解是[[nodiscard]]
仅当忽略返回值对程序可能是致命的时才应使用。我有一个对象 Car
它有一个成员const unsigned int m_ID
.如果 setter/getter unsigned int getID()
有[[nodiscard]]
? clang-tidy
建议如此。
编辑:
当然,我不想忽略 getter。但
我的观点是,如果每个返回值的函数都应该有 [[nodiscard]]
,然后属性 [[nodiscard]]
反正是多余的。编译器可以简单地检查所有返回值的函数。
最佳答案
这个选项显然是 "modernize-use-nodiscard", so you can deactivate that if you prefer .
应该注意,此选项概述的规则不是 C++ 标准委员会自己在何时应用 [[nodiscard]]
时使用的规则。 . Those rules being :
It should be added where:
- For existing API’s
- not using the return value always is a “huge mistake” (e.g. always resulting in resource leak)
- not using the return value is a source of trouble and easily can happen (not obvious that something is wrong)
- For new API’s (not been in the C++ standard yet)
- not using the return value is usually an error.
It should not be added when:
- For existing API’s
- not using the return value is a possible/common way of programming at least for some input
- for example for realloc(), which acts like free when the new site[sic] is 0
- not using the return value makes no sense but doesn’t hurt and is usually not an error (e.g., because programmers meant to ask for a state change).
- it is a C function, because their declaration might not be under control of the C++ implementation
operator new
这样的函数是
[[nodiscard]]
, 而像
optional::value
这样的函数不是。你的代码有一个小错误和你的代码从根本上被破坏是有区别的。
[[nodiscard]]
,就委员会而言,是为后者。
empty
方法是一种特殊情况。它们似乎符合“不使用
[[nodiscard]]
”的模式,但因为
empty
的名称类似于
clear
的名称, 如果不使用
empty
的返回值, 你打算调用
clear
的可能性很大.
关于c++ - 为什么 clang-tidy 建议在任何地方添加 [[nodiscard]] ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67059884/
使用 HTML5 中的新文档类型和元素,您如何获得 xdmp:tidy()识别 HTML5 中的那些? 如果我有一个包含以下内容的 html 页面: blah blah 然后尝试类
我有一些想要使用的 Django 模板文件 tidy清理。但是,它插入了我不想要的所有这些文档类型和标题垃圾。主要是,我只是想修复缩进。所有其他的东西都是额外的。 tidy 甚至可以处理像这样的部分文
我正在从 cmdline 使用 clang-tidy clang-tidy readability-implicit-bool-conversion ... " . 这个 clang-tidy 选项有
我有几个项目,我想解析很多标题,但有几个标题我不想用 clang-tidy 解析 我的文件夹层次结构如下 一种\ B\ C\ coco.h
clang-tidy --dump-config 命令产生如下内容: --- Checks: 'clang-diagnostic-*,clang-analyzer-*' Warnin
我正在使用 HTML Tidy,并且使用类似的东西 Link 它使 Link 我如何告诉 Tidy 保持链接的原样? 我的配置: 'output-xhtml' => true, 'numeric-en
我有一个 Maven 项目。当我运行该项目时,我收到错误。错误原因是 Caused by: java.lang.NoSuchMethodError: org.w3c.tidy.Tidy.setHide
我正在尝试从命令提示符运行 Maven 2 中内置的 java 应用程序 在命令提示符下,我执行了“mvn package”并在应用程序的目标文件夹中获取了 jar 然后我做了:- java -cp
我想配置我的 -line-filter= .clang-tidy 中的参数文件而不是在生成命令的 cmake 源文件中。添加 LineFilter文件的 key 只会让我出现“未知 key ”错误。这
我无法让 clang-tidy 读取我的编译数据库。如果我尝试: clang-tidy --config-file ./.clang-tidy -checks=* -p ./target 或 clan
我目前正在使用一个脚本,该脚本使用 tidy library 验证无效的 XML 文件或字符串。 测试其运行的示例代码: #include #include #include #include
命令 clang-tidy --export-fixes=fixes.yml 生成文件 fixes.yml像这样的姿势 --- Diagnostics: - DiagnosticName: mo
是否可以在 clang-tidy 中分析 C/C++ 文件,同时忽略其语法/编译错误? 我有一个很大的文件,有几个编译错误,但我仍然想用 clang-tidy 分析它。 我收到以下错误消息: 20 w
我从官方主页(http://sourceforge.net/projects/curlpas/files/)下载了最新版本(TidyPas_Delphi2010.zip)。 但是令我惊讶的是,单元中充
我在 docker container 中使用 php7 来运行基于 phpdocx 库的服务。它需要安装 tidy 和一些其他扩展并激活才能工作。我已经安装了 php-tidy 但是我收到以下警告。
自从在我们的CI服务器上使用ccache以来,我们发现构建时间方面的瓶颈现在是我们的静态分析过程,其中包括clang-tidy和其他工具。有谁知道用与常规编译器clang-tidy相似的方式来加速cc
我使用 Java 库 Tidy 来清理 html 代码。一些代码包含带有俄文字母的链接。例如 link with Russian letters 我知道必须对“Русский”进行转义,但我从用户那里
如果属性值周围缺少引号,我是否可以设置任何选项来整齐地向我显示警告?目前我运行整洁如下: tidy -xml -e test.html 在 test.html 中: 没有警告,但实际上 XML 需要
对于 C++ 的 HTML 代码,是否有等同于 tidy 的东西?我在互联网上搜索过,但除了用于 tidy 的 C++ 包装器之外,我什么也没找到...我认为关键字 tidy 是让我挂断电话的原因。
在将 xml 加载到 DomDocument 之前,我想使用 PHP Tidy 来确保它有效。 但是,我不希望 Tidy 改变我的格式 - 我只希望它修复标签不平衡等问题。 问题的一个例子可以在这个页
我是一名优秀的程序员,十分优秀!