科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道基础软件针对 Java 开发人员的 C# 编程语言(6)

针对 Java 开发人员的 C# 编程语言(6)

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

针对 Java 开发人员的 C# 编程语言转换和强制转换

来源:MSDN 2007年11月7日

关键字: 编程语言 C# java Linux

  • 评论
  • 分享微博
  • 分享邮件

转换和强制转换

Java 和 C# 遵守相似的数据类型自动转换和强制转换规则。

同 Java 一样,C# 既支持隐式类型转换又支持显式类型转换。在扩大转换的情况下,转换是隐式的。例如,下面从 int 到 long 的转换是隐式的,如同 Java 中的一样:

int intVariable = 5;
long l = intVariable;

下面是 .NET 数据类型之间的隐式转换列表:

隐式转换

源类型

目标类型

byte

short, ushort, int, uint, long, ulong, float, double 或 decimal

sbyte

short, int, long, float, double, ? decimal

int

long, float, double, 或 decimal

uint

long, ulong, float, double, 或 decimal

short

int, long, float, double, 或 decimal

ushort

int, uint, long, ulong, float, double, 或 decimal

long

float, double, 或 decimal

ulong

float, double, 或 decimal

float

double

char

ushort, int, uint, long, ulong, float, double, 或 decimal

可以使用与 Java 一样的语法对希望显式转换的表达式进行强制转换:

long longVariable = 5483;
int intVariable = (int)longVariable;
显式转换

源类型

目标类型

byte

sbyte 或 char

sbyte

byte, ushort, uint, ulong, 或 char

int

sbyte, byte, short, ushort, uint, ulong, 或 char

uint

sbyte, byte, short, ushort, int, 或 char

short

sbyte, byte, ushort, uint, ulong, 或 char

ushort

sbyte, byte, short, 或 char

long

sbyte, byte, short, ushort, int, uint, ulong, 或 char

ulong

sbyte, byte, short, ushort, int, uint, long, 或 char

float

sbyte, byte, short, ushort, int, uint, long, ulong, char, 或 decimal

double

sbyte, byte, short, ushort, int, uint, long, ulong, char, float, 或 decimal

char

sbyte, byte, 或 short

decimal

sbyte, byte, short, ushort, int, uint, long, ulong, char, float, 或 double

查看本文来源
    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章