attribute和property在英语里有啥区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了attribute和property在英语里有啥区别相关的知识,希望对你有一定的参考价值。

Attribute 着重强调某个事物固有的属性,或区别于其他事物的特征,强调“专”。从宏观上讲,比方说Car类,是什么颜色(Color);多大排量(Displacement);什么品牌(Brand)等,通过这些特征,可以区分出它是一辆什么样的汽车。
Property着重强调具有多少参数,或事物拥有的参数,不用它来特指某事物,只强调“有”。在软件工程中比如properties配置文件,系统环境变量,系统配置参数等。
Attribue和Property从本义上讲,Attribute可翻译为属性,特征;而Property可翻译为属性,资产。
在UML中Property更倾向于宏观的属性描述或属性的统指,Attribute则指具体的类的属性。
参考技术A attribute是属性特征的意思
property是财产和性质的意思

c#Property和Attribute区别

property和attribute都有属性的意思,在xml和html、xaml中的属性都是attribute。

c#中一般property是属性,而attribute是特性的意思。

例如:

 public class Student
    {
        private string name;//字段
        public string Name { get; set; }//property 属性
    }
 [DataContract]//attribute 特性
 public class Student
{
    [DataMember]//attribute 特性
     public string Name{ get; set; }
}

 

以上是关于attribute和property在英语里有啥区别的主要内容,如果未能解决你的问题,请参考以下文章

Property、attributey、field有啥区别?

Java 中 给一个object 赋值属性, 既可以用构造函数的方式,也可以用setXXXX()的方式,而它们之间有啥区

c#Property和Attribute区别

Python“属性”和“属性”有啥区别?

attribute与property

Java Annotations 和 C# Attributes 有啥异同?