- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
基于旧的Java (7) Language Specifications (13.1.7) :
Any constructs introduced by a Java compiler that do not have a corresponding construct in the source code must be marked as synthetic, except for default constructors, the class initialization method, and the values and valueOf methods of the Enum class.
在较新的 ( Java (17) Language Specifications (13.1.7) : ) 上,措辞更改为:
A construct emitted by a Java compiler must be marked as synthetic if it does not correspond to a construct declared explicitly or implicitly in source code, unless the emitted construct is a class initialization method (JVMS §2.9).
我想知道这如何应用于为 java Records (JEP 395) 的组件创建的访问器方法
例如
record ARecord(int a){}
会有一个方法 int a()
但没有代码表示这种方法,根据旧 JLS 的措辞,这种方法是由编译器添加的,所以我希望它是合成的但事实并非如此,因为可以通过在 JShell
上运行以下两行来证实这一点
jshell
| Welcome to JShell -- Version 17.0.1
| For an introduction type: /help intro
jshell> record ARecord(int a){}
| created record ARecord
jshell> ARecord.class.getDeclaredMethod("a").isSynthetic();
$2 ==> false
jshell>
我问的原因是因为我想在运行时使用反射(或任何其他编程方式)来确定类中的哪些元素具有匹配的代码结构,基本上那些具有代表它们的代码,意思是:
对于下面的代码
record ARecord(int a){
pubic void someMethod() {}
}
entity 将有 2 个方法(a
和 someMethod
),a
没有代表它的代码并且someMethod
确实如此,我需要一种方法来根据该标准区分那些
最佳答案
I wonder if it is because its considered as implicitly declared being its code implicitly defined as part of the component
就是这样。请注意旧规范如何只说“合成”应该标记在构造上
do not have a corresponding construct in the source code
隐式声明的 Enum.values
和 Enum.valueOf
除外。那时候,显然只有这两个是隐式声明的(在新规范使用该短语的意义上)。 :D
另一方面,新规范说
does not correspond to a construct declared explicitly or implicitly in source code
请注意,此措辞会自动处理 Enum
异常,但也会处理此后添加的大量隐式声明的内容。这包括记录组件。
来自Java 17 spec §8.10.3. Record Members ,
Furthermore, for each record component, a record class has a method with the same name as the record component and an empty formal parameter list. This method, which is declared explicitly or implicitly, is known as an accessor method.
...
If a record class has a record component for which an accessor method is not declared explicitly, then an accessor method for that record component is declared implicitly [...]
a
方法在您的组件中隐式声明,因此它不是合成的。
一般来说(可能存在我不知道的异常(exception)情况),合成结构是语言规范未指定但特定实现所必需的结构编译器工作。规范基本上是说此类结构必须在二进制文件中标记为“合成的”。查看一些示例 here .
关于Java记录反射和合成方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75293090/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!