forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
377 B
17 lines
377 B
6 years ago
|
package com.fanruan.api.util;
|
||
|
|
||
|
import com.fr.stable.StableUtils;
|
||
|
|
||
|
public class StableKit {
|
||
|
|
||
|
/**
|
||
|
* 判断class1是否是class2的子类实例化
|
||
|
* @param class1
|
||
|
* @param class2
|
||
|
* @return 返回判断结果
|
||
|
*/
|
||
|
public static boolean classInstanceOf(Class class1, Class class2) {
|
||
|
return StableUtils.classInstanceOf(class1, class2);
|
||
|
}
|
||
|
}
|