C# Apps C# - Interfaces

2017.06.25 15:13

졸리운_곰 조회 수:168

 

C# - Interfaces

https://www.tutorialspoint.com/csharp/csharp_interfaces.htm

Copyright © tutorialspoint.com

 


An interface is defined as a syntactical contract that all the classes inheriting the interface should follow. The interface defines the 'what' part of the syntactical contract and the deriving classes define the 'how' part of the syntactical contract.

Interfaces define properties, methods, and events, which are the members of the interface. Interfaces contain only the declaration of the members. It is the responsibility of the deriving class to define the members. It often helps in providing a standard structure that the deriving classes would follow.

Abstract classes to some extent serve the same purpose, however, they are mostly used when only few methods are to be declared by the base class and the deriving class implements the functionalities.

경축! 아무것도 안하여 에스천사게임즈가 새로운 모습으로 재오픈 하였습니다.
어린이용이며, 설치가 필요없는 브라우저 게임입니다.
https://s1004games.com

Declaring Interfaces

Interfaces are declared using the interface keyword. It is similar to class declaration. Interface statements are public by default. Following is an example of an interface declaration:

public interface ITransactions
{
   // interface members
   void showTransaction();
   double getAmount();
}

Example

The following example demonstrates implementation of the above interface:

using System.Collections.Generic;
using System.Linq;
using System.Text;
using System;

namespace InterfaceApplication
{
   public interface ITransactions
   {
      // interface members
      void showTransaction();
      double getAmount();
   }
   
   public class Transaction : ITransactions
   {
      private string tCode;
      private string date;
      private double amount;
      public Transaction()
      {
         tCode = " ";
         date = " ";
         amount = 0.0;
      }
      
      public Transaction(string c, string d, double a)
      {
         tCode = c;
         date = d;
         amount = a;
      }
      
      public double getAmount()
      {
         return amount;
      }
      
      public void showTransaction()
      {
         Console.WriteLine("Transaction: {0}", tCode);
         Console.WriteLine("Date: {0}", date);
         Console.WriteLine("Amount: {0}", getAmount());
      }
   }
   class Tester
   {
      static void Main(string[] args)
      {
         Transaction t1 = new Transaction("001", "8/10/2012", 78900.00);
         Transaction t2 = new Transaction("002", "9/10/2012", 451900.00);
         t1.showTransaction();
         t2.showTransaction();
         Console.ReadKey();
      }
   }
}

When the above code is compiled and executed, it produces the following result:

Transaction: 001
Date: 8/10/2012
Amount: 78900
Transaction: 002
Date: 9/10/2012
Amount: 451900

 

 

[출처] https://www.tutorialspoint.com/csharp/csharp_interfaces.htm

본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
번호 제목 글쓴이 날짜 조회 수
44 Machine Learning with ML.Net and C#/VB.Net file 졸리운_곰 2018.08.16 997
43 Build Simple AI .NET Library - Part 6 - ML Algorithms file 졸리운_곰 2018.03.26 1102
42 Build Simple AI .NET Library - Part 5 - Artificial Neural Networks file 졸리운_곰 2018.03.26 1046
41 Build Simple AI .NET Library - Part 4 - Beyond Perceptron file 졸리운_곰 2018.03.26 293
40 Build Simple AI .NET Library - Part 3 - Perceptron file 졸리운_곰 2018.03.26 238
39 Build Simple AI .NET Library - Part 2 - Machine Learning Introduction file 졸리운_곰 2018.03.26 309
38 Build Simple AI .NET Library - Part 1 - Basics First file 졸리운_곰 2018.03.26 293
37 텍스트 파일을 한 번에 한 줄씩 읽기(Visual C#) 졸리운_곰 2017.08.30 354
36 마우스 클릭 매크로 (C# 버전) file 졸리운_곰 2017.07.30 1401
35 Assembly Manipulation and C# / VB.NET Code Injection file 졸리운_곰 2017.07.01 419
34 Snoop is the open source WPF spying utility file 졸리운_곰 2017.07.01 263
33 Hawkeye - The .Net Runtime Object Editor Hawkeye - The .Net Runtime Object Editor file 졸리운_곰 2017.07.01 151
32 .NET Object Spy and InvokeRemote file 졸리운_곰 2017.07.01 227
31 C#에서의 리플렉션(Reflection) 졸리운_곰 2017.07.01 340
30 Loading an assembly using Reflection and invoking static methods from it file 졸리운_곰 2017.07.01 154
29 => 연산자(C# 참조) file 졸리운_곰 2017.06.25 191
28 대리자 사용(C# 프로그래밍 가이드) 졸리운_곰 2017.06.25 248
27 Using C# reflection to call a constructor 졸리운_곰 2017.06.25 175
26 Reflection introduction 졸리운_곰 2017.06.25 147
» C# - Interfaces 졸리운_곰 2017.06.25 168
대표 김성준 주소 : 경기 용인 분당수지 U타워 등록번호 : 142-07-27414
통신판매업 신고 : 제2012-용인수지-0185호 출판업 신고 : 수지구청 제 123호 개인정보보호최고책임자 : 김성준 sjkim70@stechstar.com
대표전화 : 010-4589-2193 [fax] 02-6280-1294 COPYRIGHT(C) stechstar.com ALL RIGHTS RESERVED