JVM Languages
assert.txt
Associated article: Implementing Assertions for Java
Tags: JVM Languages
Published source code files accompanying the article by Jeffery E. Payne, Michael A. Schatz, and Matthew Schmid in which they discuss assertions which act like watchdogs that assist you in finding bugs earlier in the development process.
Implementing Assertions for Java
by Jeffery E. Payne, Michael A. Schatz, Matthew Schmid
Example 1:
. . .
Coordinate x, old_x ;
x = new Location() ;
x.setValue(5);
old_x = x ;
x.setValue(10) ;
. . .
Listing One
public class math
{
private static int double_it(int x)
{
/*+ ...


