chungwong
Given 3 java classes, Container extends Box and Box extends Dimension and I am trying to port them in Elixir
and it is extremly counterintuitive.
# https://github.com/skjolber/3d-bin-container-packing/blob/master/src/main/java/com/github/skjolberg/packing/Box.java
public class Dimension {
protected int width; // x
protected int depth; // y
protected int height; // z
protected long volume;
protected final String name;
public Dimension() {
this(null);
}
public Dimension(String name, int w, int d, int h) {
this.name = name;
this.depth = d;
this.width = w;
this.height = h;
calculateVolume();
}
protected void calculateVolume() {
this.volume = ((long)depth) * ((long)width) * ((long)height);
}
}
# https://github.com/skjolber/3d-bin-container-packing/blob/master/src/main/java/com/github/skjolberg/packing/Dimension.java
public class Box extends Dimension {
final int weight;
public Box(int w, int d, int h, int weight) {
super(w, d, h);
this.weight = weight;
}
}
# https://github.com/skjolber/3d-bin-container-packing/blob/master/src/main/java/com/github/skjolberg/packing/Container.java
public class Container extends Box {
private int stackWeight = 0;
private int stackHeight = 0;
private ArrayList<Level> levels = new ArrayList<>();
public Container(Container container) {
super(container.getName(), container.getWidth(), container.getDepth(), container.getHeight(), container.getWeight());
}
}
And I am heading to this direction
defmodule Foo.Dimension do
alias Foo.{Box, Dimension}
defstruct [:name, :width, :depth, :height, :volume]
defmacro __using__(_opts) do
quote do
@spec calculate_volume(%Dimension{}) :: %Dimension{}
def calculate_volume(%Dimension{} = dimension) do
volume = dimension.depth * dimension.width * dimension.height
%{dimension | volume: volume}
end
....
end
end
end
defmodule Foo.Box do
use Foo.Dimension
alias Foo.{Box, Dimension}
@enforce_keys [:weight]
defstruct [:name, :weight, :width, :depth, :height, :volume]
end
defmodule Foo.Container do
use Foo.Dimension
alias Foo.{Container, Dimension}
defstruct [:volume, stack_weight: 0, stack_height: 0, width: 0, depth: 0, height: 0, weight: 0...]
end
The problems I am having are:
- I have to repeat the base struct
[:name, :width, :depth, :height, :volume]from Dimension all the way up to the top extender(Container) - What is the best way to deal with the
Dimensionconstructor that callscalculateVolume()? If extender(BoxorContainer) do asuper()call, how does it initiate:volume? Do I have to
%Container{...} |> Container.calculate_volume()
%Box{...} |> Box.calculate_volume()
- I am not sure if it is a good idea to mimic the inheritance like that in
Foo.Dimensionby usingdefmacro __using__(_) do
Trending in Questions
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ai
- #ecto-query
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
Just forget about inheritance and simply implement the
Container.benwilson512
This is an approach doomed to frustration. OOP and FP usually take fundamentally different approaches to thinking about problems. Break your problem down into simple data, and then solve the problem by transforming that data. Throw out notions of objects, definitely throw out notions of inheritance.
l00ker
Hint: Have a look at Protocols
peerreynders
Probably better to forget about this particular implementation and go back to the source algorithm: An Efficient Algorithm for 3D Rectangular Box Packing.
Inputs
Outputs
dimitarvp
This can start you off:
Sample usage (this gives you a new instance of the struct every time):
You can enrich this starter module with guards in the functions – like
when is_integer(w)for example.NOTE: This module does NOT work on an encapsulated data structure like in Java!
It’s simply an utility module to work with the structure. Functions there are not methods for a singular instance. Have that huge difference in mind.
As other said, forget about direct mapping from OOP to FP – it does not exist. Think about your data and make transformation functions.