博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#结构体
阅读量:6592 次
发布时间:2019-06-24

本文共 580 字,大约阅读时间需要 1 分钟。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/*
 * 结构是自定义的数据类型,与类类似,包含数据成员和函数成员
 * 1、结构是值类型
 * 2、结构是隐式密封的不可以派生
 * 3、结构中字段初始化是不允许的
 */
namespace ExStruct
{
    struct Simple
    {
        public int x;
        public int y;
        public Simple(int _x, int _y)
        {
            x = _x;
            y = _y;
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            Simple s1 = new Simple();
            s1.x = 10; s1.y = 90;
            Console.WriteLine("x:{0},y:{1}", s1.x, s1.y);
            Simple s2 = new Simple(9,9);
            Console.WriteLine("x:{0},y:{1}", s2.x, s2.y);
            Console.ReadKey();
        }
    }
}

转载于:https://www.cnblogs.com/sulong/p/4797246.html

你可能感兴趣的文章
写给将要毕业的学弟学妹们的感言
查看>>
mybatis-ehcache 用法配置备忘
查看>>
Python2.7升级到3.0 HTMLTestrunner报错解决方法
查看>>
Redis介绍以及安装(Linux)
查看>>
FreeBSD下php-mbstring的安装
查看>>
去掉VS2012中的红色波浪下划线
查看>>
[文档]关于接口文档的写法
查看>>
一次tensorflow的尝试
查看>>
家具行业探索:企业管理沟通新模式
查看>>
ReplyError: MISCONF Redis is configured to save RDB snapshots,
查看>>
建立Git版本库管理框架例子
查看>>
nginx防止部分DDOS攻击
查看>>
编写一个截取字符串的函数,输入为一个字符串和字节数,输出为按字节截取的字符串。 但是要保证汉字......
查看>>
number_format() 函数定义和用法
查看>>
Java8中聚合操作collect、reduce方法详解
查看>>
查看记录
查看>>
mybatis报ORA-00911: 无效字符
查看>>
Swift UIView动画animateWithDuration
查看>>
Maven 集成Tomcat插件
查看>>
css中的line-height问题
查看>>