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

    }
    }
    }

  • 相关阅读:
    三、Antd react 组件调用ref的用法获取实例
    三、gitextension 报错无法检出版本库的时候
    二、安装引入 antd
    一、React项目骨架搭建
    一、JAVA基础知识
    五、Maven创建Spring(IDEA2019-3-3)
    python爬取快手ios端首页热门视频
    接口测试之基础篇--http协议
    一些测试面试题
    性能测试一些相关的概念
  • 原文地址:https://www.cnblogs.com/wwwzzg168/p/3570079.html
Copyright © 2020-2023  润新知