|
From: Kevin B. <kb...@ca...> - 2001-06-29 15:52:58
|
marco wrote: > > hy there, > > how can i cast a java-instance to another type. > ex. > x = myJavaClass1() > y = (myJavaClass2) x In Jython, that looks like: x = myJavaClass1() y = x :-) No casts needed. kb |