¿¹Á¦

public class ClassA {
public int methodA () {
float a=0.0;
float b=0.0;

if (a == b) {
return;
}
}

}


¼Ö·ç¼Ç
float ¼Ò¼öÁ¡¿¡ ºñ±³ ¿¬»êÀÚ "==" ¶Ç´Â "!="¸¦ »ç¿ëÇÏÁö ¸¶½Ê½Ã¿À. µÎ °³ÀÇ float ¼Ò¼öÁ¡¿¡´Â Á¤È®ÇÏ°Ô °°Àº °ªÀÌ °ÅÀÇ Æ÷ÇÔµÇÁö ¾Ê½À´Ï´Ù.