Avatar of Mortarello
Mortarello
Flag for United Kingdom of Great Britain and Northern Ireland asked on

Reflection on JAVA to create Object RunTime

Guys,

I'm just trying do create a Object in Runtime using Reflection but i'm geting error.


public static void main(String[] args) throws Exception
      {
             
           Constructor cst = Shoes.class.getConstructor(null)
            Shoes obj =(Shoes) cst.newInstance(new Object[] { "sapato" });
             PrintClassName(obj.get_name());
     }

      public static void PrintClassName(String arg) {
            System.out.println(arg);
      }


Can some one help me Please.

Thanks
Java

Avatar of undefined
Last Comment
Am P

8/22/2022 - Mon
Mortarello

ASKER
To create without Parameter i know, but the problem is with parameters...

Many Thanks
ASKER CERTIFIED SOLUTION
Am P

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes