C#和C++中char类型的区别
对于char,这个字符类型。我们⼀般都认为就是⼀个字节。今天在仔细⽐较发现,C#的char和C++的char是有区别的。
1.⾸先来看C#中char占多⼤空间
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
unicode字符的种类有{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(sizeof(char));
Console.Read();
}
}
}
居然是返回2.也就是说两个字节。
2. 在C++中呢?
#include <iostream>
using namespace std;
int main()
{
cout << sizeof(char)<<endl;
return 0;
}
这⾥看到的结果是显⽰为1个字节
但是同时,我⼜想起来,C++⾥⾯还有另外⼀个char类型,也就是所谓的wchar_t,通常⽤来表⽰unicode char,它的空间是多少呢?#include <iostream>
using namespace std;
int main()
{
cout << sizeof(wchar_t)<<endl;
return 0;
}
3. 那么,是不是说C#中的char都是表⽰unicode字符的呢?
没错,就是这样. 如此才能解释得通嘛
char关键字⽤于声明下表所⽰范围内的 Unicode 字符。Unicode 字符是 16 位字符,⽤于表⽰世界上⼤多数已知的书⾯语⾔。
类型范围⼤⼩.NET Framework 类型
char U+0000 到 U+ffff16 位 Unicode 字符
4. 题外话:SQL Server 中的字符类型
我还想到,在SQL Server的类型系统中有下⾯⼏个字符类型,⼤家也要有所⽐较
定长char
定长(unicode)nchar
变长varchar
变长(unicode)nvarchar
也就是说,在SQL Server中也是明确地区分unicode和⾮unicode的
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论