117.info
人生若只如初见

利用C# Map集合解决实际应用问题的案例

在这个案例中,我们将使用C#的Dictionary集合(它是一个键值对集合,类似于其他编程语言中的Map)来存储员工的ID和他们的薪水。我们将创建一个简单的控制台应用程序,用于添加员工、显示员工薪水以及更新员工薪水。

首先,我们需要创建一个Employee类来存储员工的信息:

public class Employee
{
    public int Id { get; set; }
    public string Name { get; set; }
    public decimal Salary { get; set; }
}

接下来,我们将创建一个EmployeeManager类来处理员工的添加、显示和更新操作:

using System;
using System.Collections.Generic;

public class EmployeeManager
{
    private Dictionary _employees = new Dictionary();

    public void AddEmployee(Employee employee)
    {
        if (!_employees.ContainsKey(employee.Id))
        {
            _employees.Add(employee.Id, employee);
        }
        else
        {
            Console.WriteLine("Employee with this ID already exists.");
        }
    }

    public void DisplayEmployeeSalary(int employeeId)
    {
        if (_employees.ContainsKey(employeeId))
        {
            Employee employee = _employees[employeeId];
            Console.WriteLine($"Employee {employee.Name} has a salary of {employee.Salary}.");
        }
        else
        {
            Console.WriteLine("Employee not found.");
        }
    }

    public void UpdateEmployeeSalary(int employeeId, decimal newSalary)
    {
        if (_employees.ContainsKey(employeeId))
        {
            Employee employee = _employees[employeeId];
            employee.Salary = newSalary;
            Console.WriteLine($"Employee {employee.Name}'s salary has been updated to {employee.Salary}.");
        }
        else
        {
            Console.WriteLine("Employee not found.");
        }
    }
}

最后,我们将在Main方法中使用EmployeeManager类来处理用户输入:

using System;

class Program
{
    static void Main(string[] args)
    {
        EmployeeManager manager = new EmployeeManager();

        while (true)
        {
            Console.WriteLine("1. Add Employee");
            Console.WriteLine("2. Display Employee Salary");
            Console.WriteLine("3. Update Employee Salary");
            Console.WriteLine("4. Exit");
            Console.Write("Enter your choice: ");
            int choice = Convert.ToInt32(Console.ReadLine());

            switch (choice)
            {
                case 1:
                    Console.Write("Enter employee ID: ");
                    int id = Convert.ToInt32(Console.ReadLine());
                    Console.Write("Enter employee name: ");
                    string name = Console.ReadLine();
                    Console.Write("Enter employee salary: ");
                    decimal salary = Convert.ToDecimal(Console.ReadLine());

                    Employee employee = new Employee { Id = id, Name = name, Salary = salary };
                    manager.AddEmployee(employee);
                    break;

                case 2:
                    Console.Write("Enter employee ID: ");
                    int displayId = Convert.ToInt32(Console.ReadLine());
                    manager.DisplayEmployeeSalary(displayId);
                    break;

                case 3:
                    Console.Write("Enter employee ID: ");
                    int updateId = Convert.ToInt32(Console.ReadLine());
                    Console.Write("Enter new salary: ");
                    decimal newSalary = Convert.ToDecimal(Console.ReadLine());
                    manager.UpdateEmployeeSalary(updateId, newSalary);
                    break;

                case 4:
                    Environment.Exit(0);
                    break;

                default:
                    Console.WriteLine("Invalid choice. Please try again.");
                    break;
            }
        }
    }
}

现在,当你运行这个程序时,你可以添加员工、显示员工薪水以及更新员工薪水。这个简单的例子展示了如何使用C#的Dictionary集合(类似于其他编程语言中的Map)来解决实际应用问题。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fed46AzsOCQVVBA.html

推荐文章

  • c#如何获取文件夹下的所有文件名

    在C#中,您可以使用System.IO命名空间中的Directory类来获取文件夹下的所有文件名。以下是一个示例代码:
    using System;
    using System.IO; class Prog...

  • c#覆盖父类方法是什么

    在C#中,子类可以通过使用override关键字来覆盖父类的方法
    using System; class ParentClass
    { public virtual void PrintMessage() { Console.WriteL...

  • c++和c#有什么区别

    C++ 和 C# 是两种不同的编程语言,它们在许多方面都有所不同。以下是一些主要的区别: 语法:C++ 的语法比 C# 更复杂,因为它支持多种编程范式(如过程式、面向对...

  • c#数据类型有哪几种

    C# 是一种面向对象的编程语言,它包含了多种数据类型。以下是 C# 中常见的数据类型: 整数类型: sbyte:8 位有符号整数,范围从 -128 到 127。
    byte:8 位...

  • C# Map集合的内存占用情况如何优化

    在C#中,Map集合通常指的是Dictionary。为了优化内存占用,可以采取以下策略: 选择合适的数据结构:根据实际需求选择合适的数据结构。例如,如果需要按键查找值...

  • 如何在C#中对Map集合进行分组统计

    在C#中,你可以使用LINQ(Language Integrated Query)来对Map集合(在C#中通常表示为字典,Dictionary)进行分组统计
    using System;
    using System.Co...

  • C# Vector集合的容量与大小有何区别

    在C#中,Vector 并不是一个内置的类型 容量(Capacity):容量表示集合当前可以容纳的元素数量,即内部分配的存储空间。当向集合添加元素时,如果当前容量不足以...

  • 如何在C#中向Vector添加元素

    在C#中,Vector 并不是一个内置的类型
    以下是使用 List 的示例:
    using System;
    using System.Collections.Generic; class Program
    { stati...