zoukankan      html  css  js  c++  java
  • C#中简单的this与get的用法(string,decimal)

    代码
    namespace First
    {
    publicpartialclass Form1 : Form
    {
    public Form1()
    {
    InitializeComponent();
    }

    privatevoid Form1_Load(object sender, EventArgs e)
    {
    Employee E1
    =new Employee("xiaohong","you");
    E1.Salary
    =4.2m;
    E1.printEmployee();
    this.Close();
    }

    privatevoid button1_Click(object sender, EventArgs e)
    {
    MessageBox.Show(
    "Hi");
    this.Close();
    }
    }
    class Employee
    {
    privatestring name;
    privatestring alias;
    privatedecimal salary;
    public Employee(string name, string alias)
    {
    this.name = name;
    this.alias = alias;
    }
    publicdecimal Salary
    {
    get
    {
    return salary;
    }
    set
    {
    salary
    = value;
    }
    }

    publicvoid printEmployee()
    {
    MessageBox.Show(
    "Name:"+ name +" "+"Alias:"+ alias +" "+"num:"+ salary);
    // MessageBox.Show( Employee.SalcTax(this));

    }
    }
    }

    代码
    namespace First
    {
    publicpartialclass Form1 : Form
    {
    public Form1()
    {
    InitializeComponent();
    }

    privatevoid Form1_Load(object sender, EventArgs e)
    {
    Employee E1
    =new Employee("xiaohong","you");
    E1.Salary
    =1.10m;
    E1.printEmployee();
    this.Close();
    }
    }
    class Employee
    {
    privatestring name;
    privatestring alias;
    privatedecimal salary;
    public Employee(string e, string s)
    {
    this.name = e;
    this.alias = s;
    }
    publicdecimal Salary
    {
    get
    {
    return salary;
    }
    set
    {
    salary
    = value;
    }
    }
    publicstaticdecimal SalcTax(Employee E)
    {
    return3* E.Salary;
    }
    publicvoid printEmployee()
    {
    MessageBox.Show(
    "Name:"+ name +" "+"Alias:"+ alias +" "+"Salary"+ Employee.SalcTax(this));
    // MessageBox.Show( Employee.SalcTax(this));

    }
    }
    }

  • 相关阅读:
    【算法】 冒泡排序
    【算法】 插入排序
    【算法】 斐波那契数列
    【C#】 RBAC 权限框架
    【jQuery】 实用 js
    【jQuery】 Ajax
    【jQuery】 常用函数
    【jQuery】 资料
    【jQuery】 效果
    Linaro/Yocto/Openwrt
  • 原文地址:https://www.cnblogs.com/wwwzzg168/p/3570079.html
Copyright © 2011-2022 走看看