I am new to Java and I am trying to understand how to design a circuit using Java. I found this piece of code:
Can somebody explain why asset is used:
Here's example:
assert(list.length == 2);
Thanks
assert(...) just means that if the expression inside the parenthesis is true, it does nothing. If the expression is false, it throws an error. Basically, when false, it is telling whoever is calling this 'ope' method that they are giving it too few or too many inputs.
An 'and' gate does just what you think. It returns true if both inputs are true, and false if either of them are false. The return statement just performs the 'and' (&&) operation on the two inputs, as expected.
assert
is a precondition. That is, the method is checking that it's been called correctly (with 2 arguments) before it actually performs any logic. This is a common pattern (not common enough, I would argue) to determine that code is being used correctly. You may see postconditions too, which assert that the method is returning a valid result (e.g. notnull
or similar)The second line performs an AND action (
&&
) on the 2 arguments - i.e. it performs the actual logic required.I'm surprised that the interface permits multiple arguments to be passed to the gate (multiple inputs) but the method only uses 2 arguments. You could easily AND through all the arguments (in which case you could avoid the assertion completely)