1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| @SpringBootTest class DemoApplicationTests {
@Test void contextLoads() { UserServiceImpl userServiceImpl = new UserServiceImpl();
System.out.println(UserService.class.isAssignableFrom(UserServiceImpl.class));
System.out.println(userServiceImpl instanceof UserService);
System.out.println(UserService.class.isInstance(userServiceImpl)); }
}
|