mirror of
https://github.com/HighCapable/YukiHookAPI.git
synced 2025-09-06 10:45:47 +08:00
Refactor optimize code in ReflectionFactory
This commit is contained in:
@@ -146,20 +146,12 @@ infix fun Class<*>?.notExtends(other: Class<*>?) = extends(other).not()
|
|||||||
*/
|
*/
|
||||||
infix fun Class<*>?.implements(other: Class<*>?): Boolean {
|
infix fun Class<*>?.implements(other: Class<*>?): Boolean {
|
||||||
if (this == null || other == null) return false
|
if (this == null || other == null) return false
|
||||||
return getAllInterfaces().takeIf { it.isNotEmpty() }?.any { it.name == other.name } ?: false
|
/**
|
||||||
}
|
* 获取当前 [Class] 实现的所有接口类
|
||||||
|
* @return [Set]<[Class]>
|
||||||
/**
|
*/
|
||||||
* 获取当前 [Class] 实现的所有接口类
|
fun Class<*>.findAllInterfaces(): Set<Class<*>> = mutableSetOf(*interfaces).apply { superclass?.also { addAll(it.findAllInterfaces()) } }
|
||||||
*
|
return findAllInterfaces().takeIf { it.isNotEmpty() }?.any { it.name == other.name } ?: false
|
||||||
* @return [Set]<[Class]<*>>
|
|
||||||
*/
|
|
||||||
private fun Class<*>.getAllInterfaces(): Set<Class<*>> {
|
|
||||||
val interfaces = mutableSetOf(*interfaces)
|
|
||||||
superclass?.let { superClass ->
|
|
||||||
interfaces.addAll(superClass.getAllInterfaces())
|
|
||||||
}
|
|
||||||
return interfaces
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user