D 编程语言至少有两个属性前缀为“ @” 符号:
@disable
@property
“@”应该表达什么含义?我似乎找不到文件中任何相关内容。
还有,为什么
D 编程语言至少有两个属性前缀为“ @” 符号:
@disable
@property
“@”应该表达什么含义?我似乎找不到文件中任何相关内容。
还有,为什么
它没有任何意义。
是的,这也许不是你想听到的 -- 但是他们已经在新闻组里说过了。
在这一点上并不真正意味着任何。 所有
基本上只是为了保存关键字。 因此,一般来说,较新的属性在它们上面有
, 旧的属性没有(虽然在那个时候,有些东西在周围摇摆着,有些时候曾经争论过某些属性是否应该有
,但是没有办法让像
这样的东西发生,因为这样只会使移植代码更难做到没有真正的好处。最终的结果是,有些东西得到了
,有些东西没有相当武断。你只需要记住,哪些属性是从
开始,而没有注意其他语言,但是没有,从这些代码实际上不是全部的代码。
现在,在D社区中,许多人确实希望将来对自定义属性使用,在这种情况下,
将表示在所使用名称并非语言中包含的一个名称的情况下,习惯属性,但对于语言中包含的所有名称来说,这几乎等于保存关键字。
Mehrdad 指出(见评论中的链接), “@”没有特别的意义,
至于你的另一个问题, 。 此命名公约通常用于表示内部数据结构, 这些数据结构出于实际原因需要曝光, 但并非“ 安全”, 在所有情况下都可以使用( 也就是说, 黑客比早已确立的特性更安全 ) 。 我不确定 D 语言是否遵循了这项公约, 但是看到 < a href=" http://dlang.org/ atribitte.html#g shared" rel=“ nofollow” 。
g 分摊在安全方式中不允许。
我在找更多关于
Okay, I ll bite. I ve got really pleasant code/window colors set up in Xcode. Ordinarily, my selection color is very visible. When I am doing a project search and iterating through the results, ...
Can someone help me to see what is going wrong with this setup I build the @sql query in the function below like this. The extra quotes are setup in the conditions array. $sql .= " WHERE $...
I have a Patient table: PatientId Admitted --------- --------------- 1 d/m/yy hh:mm:ss 2 d/m/yy hh:mm:ss 3 d/m/yy hh:mm:ss I have a PatientMeasurement table (0 to ...
What is the XSD syntax, given <xs:element name="PhoneNumber" type="xs:string" ...? > , to specify the following format for a phone number: 12 characters and area code is digits. example of ...
Original: $sql = "SELECT DATE(TimeAdded) AS Date, $column_name FROM Codes ORDER BY TimeAdded ASC"; Altered: $sql = "SELECT DATE("m", TimeAdded ) AS Date, ColumnName FROM TableName ORDER BY ...
Is there a way to have named arguments like in perl/python for example object.method(arg1 => value1, arg2 => value2, arg3 => 0); in C# prior to C# 4.0?
I am not a fan of the following construction if (self = [super init]) { //do something with self assuming it has been created } Is the following equivalent? self = [super init]; if (self != ...
Post an example to execute a "C" statement without semicolon( ; )