C++ 中的类型转换/铸造混淆 [英] Type Conversion/Casting Confusion in C++

查看:39
本文介绍了C++ 中的类型转换/铸造混淆的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

什么是类型转换,什么是类型转换?

我应该什么时候使用它们?

When should I use each of them?

详细信息:对不起,如果这是一个明显的问题;我是 C++ 新手,来自 ruby​​ 背景,习惯于 to_sto_i 等.

Detail: Sorry if this is an obvious question; I'm new to C++, coming from a ruby background and being used to to_s and to_i and the like.

推荐答案

转换是当一个值,嗯,转换为不同的类型.结果是目标类型的值,并且对于从什么输入(源类型)产生什么输出值有规则.

Conversion is when a value is, um, converted to a different type. The result is a value of the target type, and there are rules for what output value results from what input (of the source type).

例如:

int i = 3;
unsigned int j;
j = i; // the value of "i" is converted to "unsigned int".

结果是 unsigned int 值等于 iUINT_MAX+1,此规则是语言的一部分.因此,在这种情况下,值(英文)仍然是3",但它是一个无符号整数值 3,与有符号整数值 3 略有不同.

The result is the unsigned int value that is equal to i modulo UINT_MAX+1, and this rule is part of the language. So, in this case the value (in English) is still "3", but it's an unsigned int value of 3, which is subtly different from a signed int value of 3.

请注意,转换是自动发生的,我们只是在需要无符号 int 值的位置使用了带符号的 int 值,并且语言定义了这意味着什么,而我们实际上并没有说我们正在转换.这就是所谓的隐式转换".

Note that conversion happened automatically, we just used a signed int value in a position where an unsigned int value is required, and the language defines what that means without us actually saying that we're converting. That's called an "implicit conversion".

Casting"是一种显式转换.

例如:

unsigned int k = (unsigned int)i;
long l = long(i);
unsigned int m = static_cast<unsigned int>(i);

都是演员表.具体来说,根据标准的 5.4/2,k 使用 cast-expression,而根据 5.2.3/1,l 使用等效的东西(除了我使用了不同的类型).m 使用类型转换运算符"(static_cast),但标准的其他部分也将其称为强制转换".

are all casts. Specifically, according to 5.4/2 of the standard, k uses a cast-expression, and according to 5.2.3/1, l uses an equivalent thing (except that I've used a different type). m uses a "type conversion operator" (static_cast), but other parts of the standard refer to those as "casts" too.

用户定义的类型可以定义转换函数",它提供了将你的类型转换为另一种类型的特定规则,并且单参数构造函数也用于转换:

User-defined types can define "conversion functions" which provide specific rules for converting your type to another type, and single-arg constructors are used in conversions too:

struct Foo {
    int a;
    Foo(int b) : a(b) {}                   // single-arg constructor
    Foo(int b, int c) : a(b+c) {}          // two-arg constructor
    operator float () { return float(a); } // conversion function
};

Foo f(3,4);              // two-arg constructor
f = static_cast<Foo>(4); // conversion: single-arg constructor is called
float g = f;             // conversion: conversion function is called

这篇关于C++ 中的类型转换/铸造混淆的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆