From Algol we got Pascal, C, and C++, none of which had a good module capability initially (C++ has been changing over the years and C++20 seems to have a module construct). We got Ada as well, which did have a robust module construct, but it was unpopular because it had been invented by the Department of Defense.
In the late 1980s we started seeing languages like Modula 2, which was invented by the same researcher who invented Pascal. The main difference was that Modula 2 had modules. When Java came along soon afterwards, they included something like modules, although in a funny way.
Java has packages, which are collections of classes and interfaces. There are also mechanisms for information hiding within a package, which is good. But we normally think of a module as including functions and variables as well. In Java we collect those things together by putting them in a class. What would normally be free-standing functions and variables in a module become static elements of a class. The Math class in Java is a classic example. It has static variables Math.PI and Math.E and static methods like Math.sin, Math.cos, and Math.abs.
We briefly discussed some of the benefits of modules:
When you write a large amount of code you find yourself having trouble managing the name space. For example, what if you load two different OCaml files that each have a function with a particular name? The second file loaded wipes out the definition from the first file. And what if you have a utility like to_string that you want to implement for many different types? A structure provides a way to establish independent namespaces. For example, OCaml has a function called List.length that is included in a module called List and also a function called Array.length that is included in a module called Array.
The basic form of a structure is:
So our overall structure will look like this:
module Rational = struct (* we'll fill in definitions here *) endWe began with a type definition. Rational numbers are numbers that can be expressed as a ratio of two integers, so it would make sense to store them as a tuple of two ints. But most of us don't think of integers like 23 as a tuple. We know that 23 is a rational number, but we don't like to think of it as being "23 divided by 1". So we included two different cases, one for whole numbers and one for rationals that we need to express as a fraction:
module Rational = struct type rational = Whole of int | Fraction of int * int endIf we were providing a full-blown implementation, we'd include functions for adding, subtracting, multiplying and dividing such numbers. For our purposes, we'll implement just an add method as a way to explore these issues.
The signature for the add function is that it takes a tuple of rationals (rational * rational) and it returns a rational. Because there are two forms for a rational, we end up with four total cases for add:
let add(r1, r2) = match (r1, r2) with | (Whole i, Whole j) -> ?? | (Whole i, Fraction(a, b)) -> ?? | (Fraction(a, b), Whole i) -> ?? | (Fraction(a1, b1), Fraction(a2, b2)) -> ??It took us a while to work out the math, but together we filled in the following definitions:
let add(r1, r2) = match (r1, r2) with match (r1, r2) with | (Whole i, Whole j) -> Whole(i + j) | (Whole i, Fraction(a, b)) -> Fraction(i * b + a, b) | (Fraction(a, b), Whole(i)) -> Fraction(i * b + a, b) | (Fraction(a1, b1), Fraction(a2, b2)) -> Fraction(a1 * b2 + a2 * b1, b1 * b2)We then added a to_string function:
let to_string(r) = match r with | Whole i -> string_of_int(i) | Fraction(a, b) -> string_of_int(a) ^ "/" ^ string_of_int(b)This gives us our first version of the Rational structure:
(* initial version of the Rational structure that shows how we can group a type, its constructors, and some functions into a single unit. *) module Rational = struct type rational = Whole of int | Fraction of int * int let add(r1, r2) = match (r1, r2) with | (Whole i, Whole j) -> Whole(i + j) | (Whole i, Fraction(a, b)) -> Fraction(i * b + a, b) | (Fraction(a, b), Whole(i)) -> Fraction(i * b + a, b) | (Fraction(a1, b1), Fraction(a2, b2)) -> Fraction(a1 * b2 + a2 * b1, b1 * b2) let to_string(r) = match r with | Whole i -> string_of_int(i) | Fraction(a, b) -> string_of_int(a) ^ "/" ^ string_of_int(b) endWe were able to test this in the OCaml interpreter:
# let r1 = Rational.Fraction(2, 3);; val r1 : Rational.rational = Rational.Fraction (2, 3) # let r2 = Rational.Fraction(7, 8);; val r2 : Rational.rational = Rational.Fraction (7, 8) # let r3 = Rational.add(r1, r2);; val r3 : Rational.rational = Rational.Fraction (37, 24)In the interpreter, we can give the open command to add all of the defitions from the Rational module to the current environment, which is like giving an import command in Java:
# open Rational;; # let r4 = add(r1, r3);; val r4 : Rational.rational = Fraction (159, 72)Someone pointed out that we should be reducing the result we get when we add two fractional numbers together. For example, if you were to add the rational numbers 1/8 with 1/4, our function will produce the rational number 12/32. Really this should be reduced to its lowest terms of 3/8.
How do we reduce a rational number? We find the greatest common divisor of the numerator and the denominator. We can compute the gcd as follows:
let rec gcd(x, y) = if x < 0 || y < 0 then gcd(abs(x), abs(y)) else if y = 0 then x else gcd(y, x mod y)Using gcd, we were able to write a function to reduce a rational to its simplest form:
let rec reduce(r) = match r with | Whole(i) -> Whole(i) | Fraction(a, b) -> let d = gcd(a, b) in Fraction(a/d, b/d)We found that there was a further problem that sometimes when we reduce we end up with a denominator of 1, which should really be expressed as a whole number. So we added that as an extra case in reduce:
let rec reduce(r) = match r with | Whole(i) -> Whole(i) | Fraction(a, b) -> let d = gcd(a, b) in if b = d then Whole(a/d) else Fraction(a/d, b/d)We can end up with negatives when we call the Fraction constructor, as in:
reduce(Fraction(-12, -32)) reduce(Fraction(-12, 32)) reduce(Fraction(12, -32))We decided that if both numbers in the fraction are negative, then reduce should convert them to positive numbers and if only one is negative, then it should be the first one. One extra clause for b being negative takes care of both cases:
let rec reduce(r) = match r with | Whole(i) -> Whole(i) | Fraction(a, b) -> let d = gcd(a, b) in if b < 0 then reduce(Fraction(-a, -b)) else if b = d then Whole(a/d) else Fraction(a/d, b/d)This new version produced the desired results:
# reduce(Fraction(-12, -32));; - : Rational.rational = Fraction (3, 8) # reduce(Fraction(-12, 32));; - : Rational.rational = Fraction (-3, 8) # reduce(Fraction(12, -32));; - : Rational.rational = Fraction (-3, 8)I briefly mentioned that we have a potential problem that a client might construct a fraction that is not in reduced form. So we added the following function along with a comment that clients should use this function rather than the Fraction constructor to construct rational numbers:
(* client: please always construct fractions with this function *) let make_fraction(a, b) = reduce(Fraction(a, b))Then we looked at the issue of having a value of 0 as a denominator. Division by zero is undefined, so we decided to introduce an exception and to include this in our makeFraction function:
exception Not_a_rational let make_fraction(a, b) = if b = 0 then raise Not_a_rational else reduce(Fraction(a, b))Putting this all together, we ended up with this second version of the Rational structure:
(* Second version of Rational that includes gcd and reduce to reduce fractions to their lowest form and a makeFraction function that allows us to guarantee our invariants (no 0 denominator, fractions always reduced). *) module Rational = struct type rational = Whole of int | Fraction of int * int exception Not_a_rational let rec gcd(x, y) = if x < 0 || y < 0 then gcd(abs(x), abs(y)) else if y = 0 then x else gcd(y, x mod y) let rec reduce(r) = match r with | Whole(i) -> Whole(i) | Fraction(a, b) -> let d = gcd(a, b) in if b < 0 then reduce(Fraction(-a, -b)) else if b = d then Whole(a/d) else Fraction(a/d, b/d) (* client: please always construct fractions with this function *) let make_fraction(a, b) = if b = 0 then raise Not_a_rational else reduce(Fraction(a, b)) let add(r1, r2) = match (r1, r2) with | (Whole i, Whole j) -> Whole(i + j) | (Whole i, Fraction(j, k)) -> Fraction(j + k * i, k) | (Fraction(j, k), Whole i) -> Fraction(j + k * i, k) | (Fraction(a, b), Fraction(c, d)) -> reduce(Fraction(a * d + c * b, b * d)) let to_string(r) = match r with | Whole i -> string_of_int(i) | Fraction(a, b) -> string_of_int(a) ^ "/" ^ string_of_int(b) end