Name: ________________________________
Honor Code Acknowledgment: ___________________
In the sequence of statements:
How many constructors are called in each of the statements below (and
why)?
Problem 1 Casting Call: (2 points)
Bigint big;
big = 5 + 3;
how many (and which) constructors are called?
Problem 2 Curtain Call: (3 points)
Bigint big(3+5);
BigInt big2 = 3+5;
BigInt big3 = BigInt(3+5);