本帖最后由 zpzhangwenhan 于 2013-6-6 23:14 编辑
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- Person p = new Person();
- p.Age = null;
- p.Age2 =null;
- }
- }
- public class Person
- {
- public int? Age
- {
- get;
- set;
- }
- public int Age2
- {
- get;
- set;
- }
-
- }
- }
复制代码 int 不能赋值为null
int? 能赋值为null
这是怎么回事
这两种类型有什么不同???
|