Header Ads

ad728
  • Breaking News

    Variable


    Related image

    Variable ဆိုတာက
     Vary +  Able =>  ဆိုတဲ့ စကားလုံး နှစ်လုံးကို ပေါင်းစပ်ထားခြင်းဖြစ်
    " ပြုပြင်ပြောင်းလဲနိုင်ခြင်း" လို့ အဓိပ္ပါယ်ရ

    Java တွင် Class တစ်ခုကို ရေးသားဖော်ပြမည် ဆိုလျှင် အောက်ပါအတိုင်းရေးသားလေ့ရှိ၏၊


    01public class Person {
    02
    03    private String name;
    04    private int age;
    05
    06    ...
    07    public String getName() {
    08        return this.name;
    09    }
    10
    11    public void addAge(int year) {
    12        this.age = this.age + year;
    13    }
    14}

    Java တွင် Class တစ်ခု၏ ပိုင်ဆိုင်မှု့များ၊ ပရိုဂရမ်အတွင်းတွင် အသုံးပြုလိုသည့် အချက်အလက်များကို Variable များဖြင့် အသုံးပြုလေ့ရှိ၏၊အထက်ပါ Class ထဲတွင် name, age, year တို့သည် Variable များဖြစ်ကြ၏။

    2 Of Variable 
    = = = = = =
    1. Global Variable
    2. Local Variable


    No comments

    fix Connection Information error at Wordpress

    Wordpress => add the following code in your Config.php file =>  define('FS_METHOD', 'direct');

    Powered by Blogger.