- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
获取此代码:
int issuecode(int i)
{
return 2 * i;
}
int main(int argc, char **argv)
{
return issuecode(argc);
}
按照我的理解,如果编译为 C 程序,它将具有未定义的行为。我根据这些标准报价进行推理:
C99、7.26(或 C11、7.31)
The following names are grouped under individual headers for convenience. All external names described below are reserved no matter what headers are included by the program.
C99、7.26.2(或 C11、7.31.2)
Function names that begin with either
is
orto
, and a lowercase letter may be added to the declarations in the<ctype.h>
header.
C99、7.1.3(或 C11、7.1.3)
Each header declares or defines all identifiers listed in its associated subclause, and optionally declares or defines identifiers listed in its associated future library directions subclause and identifiers which are always reserved either for any use or for use as file scope identifiers.
[...]
- All identifiers with external linkage in any of the following subclauses (including the future library directions) are always reserved for use as identifiers with external linkage.
[...] If the program declares or defines an identifier in a context in which it is reserved (other than as allowed by 7.1.4), or defines a reserved identifier as a macro name, the behavior is undefined.
基于以上,我相信函数名issuecode
实际上保留用于 <ctype.h>
,因此该程序在技术上具有 UB。
问题 0(健全性检查):我对标准的解读是否正确,而程序的行为在技术上是否未定义?
问题一:程序编译成C++代码会有UB吗?
我相信答案是“不”,因为从下面的引文中,我想说 C 的“ future 库方向”不是 C++ 标准库的一部分,但我不太确定。
C++11、21.7
Tables 74, 75, 76, 77, 78, and 79 describe headers
<cctype>
,<cwctype>
,<cstring>
,<cwchar>
,<cstdlib>
(character conversions), and<cuchar>
, respectively.The contents of these headers shall be the same as the Standard C Library headers
<ctype.h>
,<wctype.h>
,<string.h>
,<wchar.h>
, and<stdlib.h>
and the C Unicode TR header , respectively, with the following modifications:
“以下修改”均未提及附加的保留标识符。表 74 是函数名称的分类列表,如 isdigit
和 isalnum
.
C++11、C.2
1. This subclause summarizes the contents of the C++ standard library included from the Standard C library. It also summarizes the explicit changes in definitions, declarations, or behavior from the Standard C library noted in other subclauses (17.6.1.2, 18.2, 21.7).
7. The C++ standard library provides 209 standard functions from the C library, as shown in Table 153.
同样,表 153 是一个税收 list 。
问题 2: 假设我在问题 1 上错了,并且程序实际上在 C++ 中也有 UB,那么以下更改会对此有影响吗?
namespace foo {
int issuecode(int i)
{
return 2 * i;
}
}
using namespace foo;
int main(int argc, char **argv)
{
return issuecode(argc);
}
注意: 标准引用来自草案 N1256 (C99)、N1570 (C11) 和 N3242 (C++11),它们是各自语言版本的最新公开可用草案。
最佳答案
The following names are grouped under individual headers for convenience. All external names described below are reserved no matter what headers are included by the program.
有一个预定义的保留函数列表,如果您的函数在名称上没有冲突,则没有问题。
Function names that begin with either is or to, and a lowercase letter may be added to the declarations in the <ctype.h> header.
操作术语可以添加到<ctype.h>
标题。 “是或至”位只是对声明组织的指导。
所以那里从来没有真正的未定义行为......
至于 C++,我认为这遵循相同的想法,例如:
namespace foo{
int isupper ( int c );
}
#include <cctype>
using namespace foo;
int main(void){
isupper(92);
}
这应该会产生编译器错误,因为您的函数与 C 函数的名称冲突,但由于命名空间,这很容易通过附加 std::
来解决。或 foo::
到通话开始。
关于c++ - C 标准库可扩展性对 C++ 程序有多大影响?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17504565/
我最近在读 CSAPP。在 10.9 节中,它说标准 I/O 不应该与 socket 一起使用,原因如下: (1) The restrictions of standard I/O Restricti
似乎是一个足够标准的问题,可以保证解决方案中的标准设计: 假设我想在文件中写入 x+2(或更少)个字符串。 x 字符串构成一个部分的内容,这两个字符串构成该部分的页眉和页脚。要注意的是,如果内容中没有
代码版本管理 在项目中,代码的版本管理非常重要。每个需求版本的代码开发在版本控制里都应该经过以下几个步骤。 在master分支中拉取该需求版本的两个分支,一个feature分支,
我有以下sql查询,我需要获取相应的hibernate条件查询 SELECT COUNT(DISTINCT employee_id) FROM erp_hr_payment WHERE payment
所以我正在编写一些代码,并且最近遇到了实现一些 mixin 的需要。我的问题是,设计混音的正确方法是什么?我将使用下面的示例代码来说明我的确切查询。 class Projectile(Movable,
我的环境变量包含如下双引号: $echo $CONNECT_SASL_JAAS_CONFIG org.apache.kafka.common.security.plain.PlainLoginModu
示例: /** * This function will determine whether or not one string starts with another string. * @pa
有没有办法在 Grails 中做一个不区分大小写的 in 子句? 我有这个: "in"("name", filters.tags) 我希望它忽略大小写。我想我可以做一个 sqlRestriction
我搜索了很长时间,以查找将哪些boost库添加到std库中,但是我只找到了一个新库的完整列表(如此处:http://open-std.org/jtc1/sc22/wg21/docs/library_t
我已经通过使用这个肮脏的黑客解决了我的问题: ' Filter managerial functions ActiveSheet.Range("$A$1:$BW$2211").Auto
因此,我很难理解我需要遵循的标准,以便我的 Java 程序能够嵌入 HTML。我是否只需将我的主类扩展到 Applet 类,或者我还需要做更多的事情吗?另外,在我见过的每个 Applet 示例中,它都
我对在 Hibernate 中使用限制有疑问。 我必须创建条件,设置一些限制,然后选择日期字段最大值的记录: Criteria query = session.createCriteria(Stora
我有标准: ICriteria criteria = Session.CreateCriteria() .SetFetchMode("Entity1", FetchMo
我很难编写条件来选择所有子集合或孙集合为空的实体。我可以将这些作为单独的条件来执行,但我无法将其组合成一个条件。 类结构: public class Component { p
@Entity class A { @ManyToMany private List list; ... } @Entity class B { ... } 我想使用条件(不是 sql 查询)从 A
我的数据库中有以下表结构: Table A: Table B: Table C: _______________
请帮助我: 我有下一张 table : 单位 ID 姓名 用户 ID 姓名 利率 单位 ID 用户 ID 我不明白如何从 SQL 创建正确的条件结构: 代码: SELECT * FROM Unit W
我正在构建一个包含项目的网站,每个项目都有一个页面,例如: website.com/book/123 website.com/film/456 website.com/game/789 每个项目都可以
我需要使用两个属性的组合来过滤结果列表。一个简单的 SQL 语句如下所示: SELECT TOP 10 * FROM Person WHERE FirstName + ' ' + LastName L
我有一个“ super 实体”SuperEntity 和三个扩展父类(super class)的实体 ChildEntity1、...、ChildEntity3。 搜索数据库中的所有实体很容易,即我们
我是一名优秀的程序员,十分优秀!