×

attributeset tribute 布局

安卓 自定义布局 每次都有AttributeSet ,是什么意思?c# 中括号(【】)代表什么

admin admin 发表于2022-06-02 15:23:57 浏览120 评论0

抢沙发发表评论

安卓 自定义布局 每次都有AttributeSet ,是什么意思


AttributeSet 是接收xml中定义的属性信息,这不一定是自定义布局,不是自定义布局也有该属性,要不xml中定义的属性信息就无法接收了。
比如

《TextView android:layout_width=“fill_parent“
android:layout_height=“wrap_content“
android:text=“@string/hello“ /》
这几行红,layout_width,layout_height,text都可以在AttributeSet 中接收到。

c# 中括号(【】)代表什么


是 属性 Attributes ,请看 下面这篇文章: (或者看链接里的参考资料 版式好一点)

属性提供功能强大的方法以将声明信息与 C# 代码(类型、方法、属性等)相关联。与程序实体关联后,属性可在运行时查询,并可以以任意多种方式使用。

属性的用法示例包括:

将帮助文档与程序实体关联(通过 Help 属性)。
将值编辑器关联到 GUI 框架中的特定类型(通过 ValueEditor 属性)。
除一个完整的示例外,本教程还包括以下主题:

声明属性类
第一件需要做的事情是声明属性。

使用属性类
创建属性后,随即将属性与特定的程序元素关联。

通过反射访问属性
属性与程序元素关联后,即可使用反射查询属性存在及其值。

声明属性类
在 C# 中声明属性很简单:它采取从 System.Attribute 继承的类声明的形式,并已用 AttributeUsage 属性标记,如下所示:

1using System;
2[AttributeUsage(AttributeTargets.All)]
3public class HelpAttribute : System.Attribute
4{
5 public readonly string Url;
6
7 public string Topic // Topic is a named parameter
8 {
9 get
10 {
11 return topic;
12 }
13 set
14 {
16 topic = value;
17 }
18 }
19
20 public HelpAttribute(string url) // url is a positional parameter
21 {
22 this.Url = url;
23 }
24
25 private string topic;
26}
代码讨论
属性 AttributeUsage 指定该属性可以应用于的语言元素。
属性类是从 System.Attribute 派生的公共类,至少有一个公共构造函数。
属性类有两种类型的参数:
“定位参数”,每次使用属性时都必须指定这些参数。定位参数被指定为属性类的构造函数参数。在上面的示例中,url 便是一个定位参数。
“命名参数”,可选。如果使用属性时指定了命名参数,则必须使用参数的名称。通过包含非静态字段或属性来定义命名参数。在上面的示例中,Topic 便是一个命名参数。
属性参数限制为下列类型的常数值:
简单类型(bool、byte、char、short、int、long、float 和 double)
string
System.Type
enums
对象(对象类型的属性参数的参数必须是属于上述类型之一的常数值。)
以上任意类型的一维数组
AttributeUsage 属性的参数
属性 AttributeUsage 提供声明属性的基础机制。

AttributeUsage 具有一个定位参数:

AllowOn 指定可以将属性赋给的程序元素(类、方法、属性、参数等)。该参数的有效值可以在 .NET Framework 中的 System.Attributes.AttributeTargets 枚举中找到。该参数的默认值是所有程序元素 (AttributeElements.All)。
AttributeUsage 有一个命名参数:

AllowMultiple,一个布尔值,指示是否可以为一个程序元素指定多个属性。该参数的默认值为 false。
使用属性类
以下是使用上一节中声明的属性的简单示例:

1[HelpAttribute(“

1// AttributesTutorial.cs
2// This example shows the use of class and method attributes.
3
4using System;
5using System.Reflection;
6using System.Collections;
7
8// The IsTested class is a user-defined custom attribute class.
9// It can be applied to any declaration including
10// - types (struct, class, enum, delegate)
11// - members (methods, fields, events, properties, indexers)
12// It is used with no arguments.
13public class IsTestedAttribute : Attribute
14{
15 public override string ToString()
16 {
17 return “Is Tested“;
18 }
19}
20
21// The AuthorAttribute class is a user-defined attribute class.
22// It can be applied to classes and struct declarations only.
23// It takes one unnamed string argument (the author’s name).
24// It has one optional named argument Version, which is of type int.
25[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
26public class AuthorAttribute : Attribute
27{
28 // This constructor specifies the unnamed arguments to the attribute class.
29 public AuthorAttribute(string name)
30 {
31 this.name = name;
32 this.version = 0;
33 }
34
35 // This property is readonly (it has no set accessor)
36 // so it cannot be used as a named argument to this attribute.
37 public string Name
38 {
39 get
40 {
41 return name;
42 }
43 }
44
45 // This property is read-write (it has a set accessor)
46 // so it can be used as a named argument when using this
47 // class as an attribute class.
48 public int Version
49 {
50 get
51 {
52 return version;
53 }
54 set
55 {
56 version = value;
57 }
58 }
59
60 public override string ToString()
61 {
62 string value = “Author : “ + Name;
63 if (version != 0)
64 {
65 value += “ Version : “ + Version.ToString();
66 }
67 return value;
68 }
69
70 private string name;
71 private int version;
72}
73
74// Here you attach the AuthorAttribute user-defined custom attribute to
75// the Account class. The unnamed string argument is passed to the
76// AuthorAttribute class’s constructor when creating the attributes.
77[Author(“Joe Programmer“)]
78class Account
79{
80 // Attach the IsTestedAttribute custom attribute to this method.
81 [IsTested]
82 public void AddOrder(Order orderToAdd)
83 {
84 orders.Add(orderToAdd);
85 }
86
87 private ArrayList orders = new ArrayList();
88}
89
90// Attach the AuthorAttribute and IsTestedAttribute custom attributes
91// to this class.
92// Note the use of the ’Version’ named argument to the AuthorAttribute.
93[Author(“Jane Programmer“, Version = 2), IsTested()]
94class Order
95{
96 // add stuff here
97}
98
99class MainClass
100{
101 private static bool IsMemberTested(MemberInfo member)
102 {
103 foreach (object attribute in member.GetCustomAttributes(true))
104 {
105 if (attribute is IsTestedAttribute)
106 {
107 return true;
108 }
109 }
110 return false;
111 }
112
113 private static void DumpAttributes(MemberInfo member)
114 {
115 Console.WriteLine(“Attributes for : “ + member.Name);
116 foreach (object attribute in member.GetCustomAttributes(true))
117 {
118 Console.WriteLine(attribute);
119 }
120 }
121
122 public static void Main()
123 {
124 // display attributes for Account class
125 DumpAttributes(typeof(Account));
126
127 // display list of tested members
128 foreach (MethodInfo method in (typeof(Account)).GetMethods())
129 {
130 if (IsMemberTested(method))
131 {
132 Console.WriteLine(“Member {0} is tested!“, method.Name);
133 }
134 else
135 {
136 Console.WriteLine(“Member {0} is NOT tested!“, method.Name);
137 }
138 }
139 Console.WriteLine();
140
141 // display attributes for Order class
142 DumpAttributes(typeof(Order));
143
144 // display attributes for methods on the Order class
145 foreach (MethodInfo method in (typeof(Order)).GetMethods())
146 {
147 if (IsMemberTested(method))
148 {
149 Console.WriteLine(“Member {0} is tested!“, method.Name);
150 }
151 else
152 {
153 Console.WriteLine(“Member {0} is NOT tested!“, method.Name);
154 }
155 }
156 Console.WriteLine();
157 }
158}

输出
Attributes for : Account
Author : Joe Programmer
Member GetHashCode is NOT tested!
Member Equals is NOT tested!
Member ToString is NOT tested!
Member AddOrder is tested!
Member GetType is NOT tested!

Attributes for : Order
Author : Jane Programmer Version : 2
Is Tested
Member GetHashCode is NOT tested!
Member Equals is NOT tested!
Member ToString is NOT tested!
Member GetType is NOT tested!

contribute和commit区别






摘要
您好,很高兴为您解答,’Contribute’ 是在增加一些东西/提供帮助——“我为那个项目做出了贡献。commit的用法1:commit的基本意思是“做”“干”,多用于错误的事、坏事。 commit的用法2:commit是及物动词,作“”解时,后面接反身代词作宾语
-tribute







咨询记录 · 回答于2021-11-28










contribute和commit区别










您好,正在为您解答这一道题,您需要耐心等待三分钟左右的时间,答案马上为您揭晓,请不要着急哦










您好,很高兴为您解答,’Contribute’ 是在增加一些东西/提供帮助——“我为那个项目做出了贡献。commit的用法1:commit的基本意思是“做”“干”,多用于错误的事、坏事。 commit的用法2:commit是及物动词,作“”解时,后面接反身代词作宾语
-布局