Casting to a New Type Casting to a New Type <% float float1; double double1 = 1; float1 = (float) double1; out.println("float1 = " + float1); %>