Coder Social home page Coder Social logo

Comments (1)

charlesstaats avatar charlesstaats commented on July 2, 2024 1

Nice idea. There are a couple potential issues with the idea as suggested:

  1. What about fields defined after void operator init = auto;? Are they included or not? In Asymptote (unlike modern C++ or even Python), the compiler generally doesn't have access to anything that hasn't happened later in the file. Technically speaking this could be worked around, but someone will find it confusing either way. I can also see a version of this in which multiple "default" constructors are allowed; so, for instance,
struct Person {
  string firstname;
  string lastname;
  void operator init=auto;
  Person[] children;
  void operator init=auto;
}

might have two "default" constructors, one of which takes (firstname, lastname) while the other takes (firstname, lastname, children).
2. Normally, in Asymptote (unlike C++), a method is a kind of field. So which fields should be included in the following?

struct Info {
  string name;
  void addname(string s) { name += s; }
  arrowbar3 ab;
  void operator init = auto;
}

Presumably we want to set ab but not addname in the default constructor. But note that, by the definition of arrowbar3, the above is equivalent to this:

struct Info {
  string name;
  void addname(string s) { name += s; }
  bool ab(picture, path3, material, margin3, light, light);
  void operator init = auto;
}

And in this iteration, it's less clear that ab should be a constructor parameter.

One idea to solve the latter issue would be that the constructor should reference those variables that are not explicitly initialized. So for instance, in

struct Person {
  string firstname;
  string lastname = 'Smith';
  void operator init = auto;
}

firstname but not lastname would be parameters of the default initializer. On the other hand, should those explicitly initialized variables be parameters that have default values? It would also add a bit of complexity to the compiler; at the moment, there's no attempt made at compile time to keep track of whether or not a variable has been initialized.

None of this is to say that the idea cannot or should not be implemented in some form, only that careful thought is required.

One final note: While suggested improvements are always appreciated, please do keep in mind that many improvements can sit around for years before anyone gets around to implementing them (if ever), even if the improvement is straightforward and everyone agrees on what it ought to be.

from asymptote.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.