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));

    }
    }
    }

  • 相关阅读:
    go包初始化顺序
    go map
    go包管理
    C++ 线程池
    RAFT共识算法笔记
    最大子序列和
    常见网络攻击及其防御
    go常用标准库功能
    using代替typedef
    typename和class的区别
  • 原文地址:https://www.cnblogs.com/wwwzzg168/p/3570079.html
Copyright © 2011-2022 走看看