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 9121299
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T05:49:48+00:00 2026-06-17T05:49:48+00:00

In a factory function, I sometimes want to do nothing but return a freshly

  • 0

In a factory function, I sometimes want to do nothing but return a freshly created, empty associative array.

One way of doing it is this:

auto make_dict()
{ int[char] dict; return dict; }

Is there a way to avoid the declaration of the local variable dict? Something along the lines of

auto make_dict()
{ return int[char]; }

or,

auto make_dict()
{ return int[char](); }

or,

auto make_dict()
{ return new int[char]; }

None of these work, for reasons related to how associative arrays need to be declared. Is there a way?

  • 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-06-17T05:49:49+00:00Added an answer on June 17, 2026 at 5:49 am

    you can use

    return (int[char]).init;
    

    so you don’t have to declare it.

    the init property on all type denotes the default initialization value for the type (null for references, empty dynamic array, and the empty associative array, with the current implementation)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So what will be the preferred way of initializing records? With a 'factory function':
I am using my own controller factory and sometimes in function public IController CreateController(RequestContext
I want to implement a factory function for creating objects. My object template looks
I want to use a factory function for my vector and also use the
I have a factory function which return a stl container: const std::vector<int> f(...) {
I'm trying to create a factory function that would return boost::interprocess::unique_ptr. Here's an example:
I'm learning JQuery and have found the factory function $() with its selectors quite
Is this possible? I am creating a single base factory function to drive factories
I have a class with a factory-pattern function in it: abstract class ParentObj {
public function test(){ $data = ORM::factory('testdata')->find_all(); Table::factory() ->set_body_data($data) ->set_row_titles('id') ->set_column_titles(Table::AUTO) ->set_callback('format_row', 'row') ->render(true); $this->template->title

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.