Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6961423
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T15:31:42+00:00 2026-05-27T15:31:42+00:00

I have a library of objects in perl all having the same function_calls. I

  • 0

I have a library of objects in perl all having the same function_calls.
I am looking for how to create an approriate object from the library from a string.

my $object_name='myObject';#would actually be a hash lookup from user input with appropriate error checks
my $string = "return ${object_name}->new(\@params);";
my $object = eval $string;
$object->some_function();

Now I am having a problem, it works for some objects and doesn’t for others? Is there a more reliable way of doing this. I have tried printing the string out before eval and it appears to be correct with the correct class name, also every object takes the same parameter, any Ideas, thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T15:31:42+00:00Added an answer on May 27, 2026 at 3:31 pm

    The eval is not necessary since a string can be used as a package name, so the lines:

    my $object_name = 'myObject';
    
    my $object = $object_name->new(@params);
    

    Will do what you want. If you want to make sure that myObject is actually a valid package name you could do:

    my $object_name = 'myObject';
    
    unless ($object_name->can('new')) {
        die "bad object name: $object_name";
    }
    my $object = $object_name->new(@params);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a need to create a library of Object Oriented PHP code that
I have a library function that returns a list of domain objects from a
I have a library with some objects that I use both from C# and
I have written a library that exposes references to several related object types. All
If I have have some overloaded ostream operators, defined for library local objects, is
I am writing a fairly large C++ shared-object library, and have run into a
I have existing Linux shared object file (shared library) which has been stripped. I
I have a COM object written using the MS ATL library. I have declared
I have an upgraded 3rd party library and there used to be an object
Does anyone have an example using the table object in YUI library. More specifically,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.