[Subject Prev][Subject Next][Thread Prev][Thread Next][Subject Index][Thread Index]

Re: Java CreateObject



On Sun, Jun 25, 2000 at 07:52:06PM +0530, Lakshmi Anand K. wrote:
> I want to create java objects with their class names known at runtime. I
> want something of this:
>         objref = createobject("classname");

objref = Class.forName("classname").newInstance()

	-Arun