attribute的用法--C#

一直以来都没理解attribute是个什么东西,也没怎么用,但是看msdn或者git上源码使用的还是蛮频繁的,今天好好整理了下,写下自己的理解和例子:

attribute主要用来说明代码段的的信息,标志等;可以一种元数据结构,不会影响到代码段的结果。这个代码段可以是class,struct,method,constructor等结构,下面会给出反编译源码说明哪些代码段可以作为目标。

    1,.NET内建attribute
         [AttributeUsage]

  AttributeUsage主要用来限定attribute可以在哪些情况下下使用,下面是AtttributeUsage的多个构造函数中的一个,其他不赘述:

internal AttributeUsageAttribute(AttributeTargets validOn, bool allowMultiple, bool inherited)
    {
      this.m_attributeTarget = validOn;
      this.m_allowMultiple = allowMultiple;
      this.m_inherited = inherited;
    }
   参数说明:

       1),AttributeTarges必要的参数,反编译得到attribute的目标:    

public enum AttributeTargets
  {
    [__DynamicallyInvokable] Assembly = 1,
    [__DynamicallyInvokable] Module = 2,
    [__DynamicallyInvokable] Class = 4,
    [__DynamicallyInvokable] Struct = 8,
    [__DynamicallyInvokable] Enum = 16, // 0x00000010
    [__DynamicallyInvokable] Constructor = 32, // 0x00000020
    [__DynamicallyInvokable] Method = 64, // 0x00000040
    [__DynamicallyInvokable] Property = 128, // 0x00000080
    [__DynamicallyInvokable] Field = 256, // 0x00000100
    [__DynamicallyInvokable] Event = 512, // 0x00000200
    [__DynamicallyInvokable] Interface = 1024, // 0x00000400
    [__DynamicallyInvokable] Parameter = 2048, // 0x00000800
    [__DynamicallyInvokable] Delegate = 4096, // 0x00001000
    [__DynamicallyInvokable] ReturnValue = 8192, // 0x00002000
    [__DynamicallyInvokable] GenericParameter = 16384, // 0x00004000
    [__DynamicallyInvokable] All = GenericParameter | ReturnValue | Delegate | Parameter | Interface | Event | Field | Property | Method | Constructor | Enum | Struct | Class | Module | Assembly, // 0x00007FFF
  }
         2),allowMutiple是bool类型,可选的参数;ture表示可以在同一个代码段多次使用,默认的是false;

         3),inherited是bool类型,可选的参数;ture表示在派生类中继承,默认的值false;

         [Obsolete]

        主要用来指示代码段是废弃的,并通知编译器,编译器将会给出警告或者错误;

        用法:[Obsolete(message)]  和[Obsolte(message(string),iserror(bool))]

        message:描述代码段废弃的原因,并指出替代者;iserror:当它是true时,编译器报错,默认时false

    这里放代码的话看不出来编译错误,上图明显显示错误,并指示应该时NewMethod。

         [Conditional]

         主要用来定义一个预定义符号,作为编译条件,类似#ifdef的作用,下面例子说明用法:

#define Test
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
 
namespace Experiments
{
    class Program
    {
        static void Main(string[] args)
        {
            
            System.Console.ReadKey();
            DoWork();
        }
 
        [Conditional("Test")]
        static void DoWork()
        {
            for (int i = 0; i < 100; i++)
            {
                Console.WriteLine(i);
                Thread.Sleep(100);
            }
        }
    }
}
  当没有定义#define Test,DoWork方法不执行

         [CallerMemberName]

  可以自动展示调用者的名字,用在INotifyPerprotyChanged例子:

public class MyUIClass : INotifyPropertyChanged
    {
        public event PropertyChangedEventHandler PropertyChanged;
 
        public void RaisePropertyChanged([CallerMemberName] string propertyName = null)
        {
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
        }
 
        private string _name;
        public string Name
        {
            get { return _name; }
            set
            {
                if (value != _name)
                {
                    _name = value;
                    RaisePropertyChanged();   // notice that "Name" is not needed here explicitly
                }
            }
        }
    }
2,自定义attribute
     自定义的attribute必须要继承自Attribute基类,其参数按照MSDN解释分为位置参数(positional parameter)和可选的命名参数(named parameter)。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Experiments
{
    [AttributeUsage(AttributeTargets.Class
                    |AttributeTargets.Constructor
                    |AttributeTargets.Field
                    |AttributeTargets.Method
                    |AttributeTargets.Property, AllowMultiple = true)]
    public class DevelopLog:Attribute
    {
        //positional parameter
        private string _developer;
        private string _reviewer;
        private string _lastModTime;
        //named parameter
        private string msg;         
 
        public string Developer { get => _developer;  }
        public string Reviewer { get => _reviewer; }
        public string LastModTime { get => _lastModTime;  }
        public string Msg { get => msg; set => msg = value; }
 
        public DevelopLog(string dev, string rv, string lmt)
        {
            _developer = dev;
            _reviewer = rv;
            _lastModTime = lmt;
        }
    }
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Experiments
{
    
    [DevelopLog("zhangsan", "boss", "20180807", Msg = "create class")]
    [DevelopLog("lisi", "boss", "20180807", Msg = "add method dowork")]
    public class Student
    {
        private string _name;
        private string _age;
 
        public Student(string n, string a)
        {
            _name = n;
            _age = a;
        }
 
        [DevelopLog("zhangsan", "boss", "20180807")]
        public void EvertyDayDoThing()
        {
 
        }
        [DevelopLog("zhangsan", "boss", "20180807")]
        public void MoringDo()
        {
 
        }
        [DevelopLog("lisi", "boss", "20180808")]
        public void NoonDo()
        {
 
        }
 
        [DevelopLog("zhangsan", "boss", "20180807", Msg="paly game all day and not do homework")]
        public void PlayGame()
        {
 
        }
    }
}
  然后在实际应用中,我们可以通过reflection来获取上面描述的attribute,从而获取有价值的信息
 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/246222.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

走进LWRP(Universal RP)的世界

走进LWRP&#xff08;Universal RP&#xff09;的世界 原文&#xff1a;https://connect.unity.com/p/zou-jin-lwrp-universal-rp-de-shi-jie LWRP自Unity2018发布以来&#xff0c;进入大家视野已经有一段时间了&#xff0c;不过对于广大Unity开发者来说&#xff0c;依然相对…

Unity Fine Prued Tiled Light (FPTL)

Fine Prued Tiled Light Lists 视频讲解&#xff1a;https://www.bilibili.com/video/av90517615 FPT是在Tile裁剪的基础上在进行一次剔除 可用于Forward Render和Deferred Shading两种渲染管线 利用了并行架构进行优化 将线程分为线程组再分为多个线程&#xff0c;Thread Gro…

Unity 2017 Game Optimization 读书笔记(1)Scripting Strategies Part 1

1.Obtain Components using the fastest method Unity有多种Getcomponet的方法&#xff1a; GetComponent(string), GetComponent<T>() GetComponent(typeof(T)) 哪种效率最高会跟随Unity版本的变化而变化&#xff0c;对于Unity 2017&#xff0c;本书作者的测试是Ge…

C# 多态相关的文章

一 C# 多态的实现 封装、继承、多态&#xff0c;面向对象的三大特性&#xff0c;前两项理解相对容易&#xff0c;但要理解多态&#xff0c;特别是深入的了解&#xff0c;对于初学者而言可能就会有一定困难了。我一直认为学习OO的最好方法就是结合实践&#xff0c;封装、继承在…

C++ 虚函数和虚表

几篇写的不错的文章&#xff0c;本文是整合了这几篇文章&#xff0c;感谢这些大佬 https://www.jianshu.com/p/00dc0d939119 https://www.cnblogs.com/hushpa/p/5707475.html https://www.jianshu.com/p/91227e99dfd7 多态: 多态是面相对象语言一个重要的特性,多态即让同一…

Unity 2017 Game Optimization 读书笔记(2)Scripting Strategies Part 2

1. Share calculation output 和上一个Tip很像&#xff0c;可以缓存计算结果或者各种信息&#xff0c;避免多次重复的计算&#xff0c;例如在场景里查找一个物体&#xff0c;从文件读取数据&#xff0c;解析Json等等。 容易忽略的点是常常在基类了实现了某个方法&#xff0c;在…

Unity 2017 Game Optimization 读书笔记(3)Scripting Strategies Part 3

1.Avoid retrieving string properties from GameObjects 通常来讲&#xff0c;从C#的object中获取string 属性没有额外的内存开销&#xff0c;但是从Unity中的Gameobject获取string属性不一样&#xff0c;这会产生上一篇讲到的 Native-Managed Bridge&#xff08;Native内存和…

Unity 2017 Game Optimization 读书笔记(4)Scripting Strategies Part 4

1.Avoid Find() and SendMessage() at runtime SendMessage() 方法和 GameObject.Find() 相关的一系列方法都是开销非常大的。SendMessage()函数调用的耗时大约是一个普通函数调用的2000倍&#xff0c;GameObject.Find() 则和场景的复杂度相关&#xff0c;场景越复杂&#xff0…

团队行为心理学读书笔记(1)

阿伯拉罕马斯洛需求五个层次&#xff1a; &#xff08;1&#xff09;生理需要&#xff1a;食物、水、住所、性满足等方面的需要。 &#xff08;2&#xff09;安全需要&#xff1a;保护自己免受身体和情感伤害的需要。 &#xff08;3&#xff09;爱和归属的需要&#xff1a;渴…

团队行为心理学读书笔记(2)招聘背后的心理学

招聘时&#xff0c;不要只看应聘者的知识和技能 美国著名心理学家麦克利兰1973年提出了一个著名的素质冰山模型。所谓“冰山模型”&#xff0c;就是将人员个体素质的不同表现形式划分为表面的“冰山以上部分”和深藏的“冰山以下部分”。其中&#xff0c;冰山以上部分包括基本…

团队行为心理学读书笔记(3)领导力背后的行为心理学

有小缺点的主管&#xff0c;在下属眼里更有魅力 一位心理学教授曾做了一个关于管理者魅力的实验&#xff0c;他给被测试的对象播放了四段情节类似的访谈录像&#xff1a;出现在第一段录像里的是一个非常优秀的成功人士&#xff0c;他成就辉煌&#xff0c;面对主持人的采访&…

团队行为心理学读书笔记(4)带队伍背后的行为心理学

成就高效团队的基础&#xff1a;信任 信任具有三个特征&#xff1a;第一&#xff0c;信任者承担着一定的风险&#xff0c;信任者要承受被信任者失信的损失&#xff1b;第二&#xff0c;被信任者的行为不在信任者的控制之内&#xff1b;第三&#xff0c;如果某一方违约&#xf…

Unity HDRP中的光照烘焙测试(Mixed Lighing )和间接光

部分内容摘抄自&#xff1a;https://www.cnblogs.com/murongxiaopifu/p/8553367.html 直接光和间接光 大家都知道在Unity中&#xff0c;我们可以在场景中布置方向光、点光、聚光等类型的光源。但如果只有这些光&#xff0c;则场景内只会受到直接光的影响&#xff0c;而所谓的…

聊聊Unity项目管理的那些事:Git-flow和Unity

感谢原作者https://www.cnblogs.com/murongxiaopifu/p/6086849.html 0x00 前言 目前所在的团队实行敏捷开发已经有了一段时间了。敏捷开发中重要的一个话题便是如何对项目进行恰当的版本管理。项目从最初使用svn到之后的Git One Track策略再到现在的GitFlow策略&#xff0c;中…

聊聊网络游戏同步那点事

写的非常好的一篇博文&#xff0c;转载自https://www.cnblogs.com/murongxiaopifu/p/6376234.html 0x00 前言 16年年底的时候我从当时的公司离职&#xff0c;来到了目前任职的一家更专注于游戏开发的公司。接手的是一个platform游戏项目&#xff0c;基本情况是之前的团队完成…

Unity 2017 Game Optimization 读书笔记 Dynamic Graphics(1)

The Rendering Pipeline 渲染表现差有可能取决于CPU端&#xff08;CPU Bound&#xff09;也有可能取决于GPU(GPU Bound).调查CPU-bound的问题相对简单&#xff0c;因为CPU端的工作就是从硬盘或者内存中加载数据并且调用图形APU指令。想找到GPU-bound的原因会困难很多&#xff…

Unity 2017 Game Optimization 读书笔记 Dynamic Graphics(2)

Lighting and Shadowing 现代的游戏中&#xff0c;基本没有物体能在一步就完成渲染&#xff0c;这是因为有光照和阴影的关系。光照和阴影的渲染在Fragment Shader中需要额外的pass。 首先要设置场景中的Shadow Casters和Shadow Receivers&#xff0c;Shadow Casters投射阴影&…

Unity 2017 Game Optimization 读书笔记 The Benefits of Batching

batching&#xff08;合批&#xff09; 和大量的描述一个3D物体的数据有关系&#xff0c;比如meshes&#xff0c;verices&#xff0c;edges&#xff0c;UV coordinates 以及其他不同类型的数据。在Unity中谈论batching&#xff0c;指的是用于合批mesh数据的两个东西&#xff1a…

Unity 2017 Game Optimization 读书笔记 Dynamic Graphics (3)

Rendering performance enhancements Enable/Disable GPU Skinning 开启GPU Skinning可以减轻CPU或GPU中Front End部分中某一个的负担&#xff0c;但是会加重另一个的负担。Skinning是mesh中的顶点根据动画中骨骼的当前位置进行计算&#xff0c;从而让角色摆出正确的姿势。 …

Unity手游开发札记——布料系统原理浅析和在Unity手游中的应用

原文&#xff1a;https://zhuanlan.zhihu.com/p/28644618 0. 前言 项目技术测试结束之后&#xff0c;各种美术效果提升的需求逐渐成为后续开发的重点&#xff0c;角色效果部分的提升目标之一便是在角色选择/展示界面为玩家提供更高的品质感&#xff0c;于是可以提供动态效果的…