Logo

Programming-Idioms

  • Java
  • Python
point = dict(x=1.2, y=3.4)
from dataclasses import dataclass
@dataclass
class Point:
    x: float
    y: float
class Point:
    def __init__(self, x, y):
        self.x, self.y = x, y
from collections import namedtuple
Point = namedtuple("Point", "x y")
point = {'x': 1.2, 'y': 3.4}
class Point { double x, y; }
class Point{
  double x;
  double y;
}
record Point<T extends Number>(T x, T y) {}
public record Point(double x, double y) { }

Java 17
type Point is
   record
      X : Float;
      Y : Float;
   end record;

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