Logo

Programming-Idioms

  • Java
  • C#
record Point(double x, double y);

If heap allocation isn't a problem, and a named type is needed, then the record syntax can be used to define a class with minimal boilerplate
struct Point
{
    public double x;
    public double y;
};

A struct avoids heap allocation, which can be important in many applications that are doing extensive calculations on x/y coordinates.
(double x, double y)

The simplest form in C# is a tuple.
class Point{
  double x;
  double y;
}
record Point<T extends Number>(T x, T y) {}
public record Point(double x, double y) { }

Java 17
class Point { double x, y; }
type Point is
   record
      X : Float;
      Y : Float;
   end record;

New implementation...
< >
programming-idioms.org