Ad Code

Java 24- typecasting and conversion rules and its usual methods


Java 24- typecasting and conversion rules and its usual methods

في هذا الفيديو من جافا JAVA , سنتحدث عن التحويلات سواء التلقائية او اليدوية, وسنتحدث عن قواعد التحويل المتبعة في لغة جافا, وعن التحويل بين الكائنات في نطاق الوراثة البرمجية, وعن بعض الدوال الاعتيادية في التحويل. typecasting and conversion rules and its usual methods


public class App{
  /*
   * Integer.parseInt(String s) :  int
   * Float.parseFloat(String s) : float
   * Double.parseDouble(String s) : double
   * String.valueOf(Object obj) : String
   */

  public static void main(String[] args) {
    /* byte < short < int < long < float < double
              char  < int < long < float < double */
    
    short sa=2 , sb=-3;
    int ia=5, ib=2;
    long la=2;
    float fa=ia/ib;
    float fb=(float)ia/ib;


    sa= (short)(sa+sb);
    ia= sa+sb;
    la=la+sa;
   
    String str="3";
    int intStr=Integer.parseInt(str);

    System.out.println(fa); // 2.0
    System.out.println(fb); // 2.5
  
  }
}

إرسال تعليق

0 تعليقات

Close Menu