91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Visual Studio Employee類怎么用

發布時間:2021-12-01 10:43:17 來源:億速云 閱讀:125 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關Visual Studio Employee類怎么用,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

學習Visual Studio時,你可能會遇到Visual Studio Employee類問題,Visual Studio Employee類的派生類型必須具有計算薪水操作,這里將介紹Visual Studio Employee類問題的解決方法,在這里拿出來和大家分享一下。

  • 描述Visual Studio ExchangeRate類

  • 四分鐘懂得Visual Studio工具

  • 討論Visual Studio類設計器多項技巧

  • Visual Studio Shell最新戰況

  • 輕松添加Visual Studio類關系圖

為Visual Studio Employee類添加一個CalculatePay抽象方法,該方法返回一個十進制數。在Visual Studio Employee類的標題打開其快捷菜單,選擇“添加”子菜單和“方法”菜單命令,為新方法命名為“CalculatePay”。在“類詳細信息”窗口設置十進制數作為返回類型。該方法應該設置為抽象的。打開CalculatePay方法的快捷菜單并修改“繼承修飾符”為abstract(抽象)。然后系統顯示一個消息框要求你對這一修改進行確認,選“確定”。

Hourly Employee類應該繼承Visual Studio Employee類。這一關系用繼承線來創建,具體做法是:將繼承線從Hourly Employee類拖到Visual Studio Employee類。

***,為Hourly Employee類添加一個Pay方法。Pay方法只有一個參數,就是工作的小時數。在“類詳細信息”窗口,擴展Pay方法的行來打開 “添加參數”項,選擇“添加參數”行并輸入“Hours”作為參數名,修改類型為十進制數。添加一個HourlyRate屬性到該類以使其完整,該屬性也是十進制數類型的。

以下代碼由類關系圖創建。創建的函數是很粗略的,接下來只需要實現這些粗略的函數。

public interface Iemployee  {  int Age  {  get;  set;  }  Name Fullname  {  get;  set;  }  string EmployeeInfo();  }  public struct Name  {  public string FirstName  {  get  {  throw new System.NotImplementedException();  }  set  {  }  }  public string LastName  {  get  {  throw new System.NotImplementedException();  }  set  {  }  }  }  public abstract class Employee : IEmployee  {  #region IEmployee Members  public int Age  {  get  {  throw new Exception(  "The method or operation is not implemented.");  }  set  {  throw new Exception(  "The method or operation is not implemented.");  }  }  public Name Fullname  {  get  {  throw new Exception(  "The method or operation is not implemented.");  }  set  {  throw new Exception(  "The method or operation is not implemented.");  }  }  public string EmployeeInfo()  {  throw new Exception(  "The method or operation is not implemented.");  }  #endregion  public abstract decimal CalculatePay();  }  public class HourlyEmployee : Employee  {  public decimal HourlyRate  {  get  {  throw new System.NotImplementedException();  }  set  {  }  }  public override decimal CalculatePay()  {  throw new Exception(  "The method or operation is not implemented.");  }  public void Pay(decimal Hours)  {  throw new System.NotImplementedException();  }  }

關于“Visual Studio Employee類怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁晋县| 隆昌县| 南通市| 关岭| 许昌县| 肥西县| 民丰县| 登封市| 鄯善县| 南通市| 建瓯市| 綦江县| 额敏县| 巴林左旗| 慈利县| 巴南区| 垫江县| 玛纳斯县| 斗六市| 乳源| 祥云县| 贵州省| 盐津县| 黄骅市| 华亭县| 金昌市| 横山县| 东乡县| 安图县| 安顺市| 宿迁市| 华阴市| 宁化县| 聂荣县| 奈曼旗| 深水埗区| 罗甸县| 常熟市| 社旗县| 灵台县| 微博|