程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> 關於C# >> C#高級(六)接口,接口繼承

C#高級(六)接口,接口繼承

編輯:關於C#

接口我們在前面也已經有所提及。接口的命名傳統上都以大寫I 開頭。

我們假設這樣一種情況,一個系統有很多用戶,我們可以查詢某個用戶是否存在,並且可以修改用戶 的密碼。但有可能某天我們的數據庫從mysql 升級成為 sqlserver 。在這種情況下,我們看下面一個例 子。

using System;
namespace gosoa.com.cn
{
public interface IUserOperation
{
bool userExites(string username);
bool updateUserPwd(string newPwd,string oldPwd);
}
public class SqlUserOperation: IUserOperation
{
//這裡我們假使 uname oldPwd 是通過sql在數據庫中查到的。具體查詢,這裡就不說了。
string uname="pan";
public string oldPwd="gosoa.com.cn";
public bool userExites(string username)
{
if(username==uname)
{
return true;
}else
{
return false;
}
}
public bool updateUserPwd(string newPwd,string oldPwd)
{
if(newPwd==oldPwd)
{
return true;
} else
{
return false;
}
}
}
public class MainClass
{
static void Main(string [] args)
{
string newPwd =Console.ReadLine();
string username =Console.ReadLine();
SqlUserOperation one=new SqlUserOperation();
IUserOperation tow=new SqlUserOperation();
if(tow.userExites(username))
{
Console.WriteLine("用戶存在");
}else
{
Console.WriteLine("用戶不存在");
}
if(tow.updateUserPwd(newPwd,one.oldPwd))
{
Console.WriteLine("密碼修改成功");
}else
{
Console.WriteLine("密碼修改失敗");
}
}
}
/*
//我們可能某天需要用mysql 數據庫了。這時候的具體實現又有所不同了。
public class MysqlUserOperation: IUserOperation
{
}
*/
}

注意,實現接口的類,必須實現類的全部成員。否則會報錯喔。

我們來看這一句IUserOperation tow=new SqlUserOperation(); 該句把引用變量聲明為 IUserOperation的引用方式,這表示,他們可以指向實現這個接口的任何類的實例。

同時,接口也可以彼此繼承,但要注意,實現接口的類必須實現接口以及接口的父接口的所有方法。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved