SlideShare ist ein Scribd-Unternehmen logo
1 von 5
Downloaden Sie, um offline zu lesen
Articles from Jinal Desai .NET
OOPS With CSharp
2012-11-10 13:11:59 Jinal Desai

Some scenarios I came across while working with C# where OOPs funda deviated
at some level to provide more flexibility. Suggest me some more scenarios if I miss
anyone.

Scenario # 1.
Two interface having same method signature is derived by a class.

How to implement methods in a class with same signature from different
interfaces?
We can use named identifiers to identify the common method we implemented
based on two different interfaces.

i.e. If there is two interfaces i1 and i2, both has one method with same signature
(void test(int a)), then at the time of implementing these methods inside class “abc”
we can use i1.test and i2.test to differentiate the implementation of methods from
two different interfaces having same signature.

Interface i1
{
  void test(int a);
}

interface i2
{
  void test(int a);
}

public class abc: i1, i2
{
  void i1.test(int a)
  {
    Console.WriteLine(“i1 implementation: “ + a);
  }

    void i2.test(int a)
    {
      Console.WriteLine(“i2 implementation: “ + a);
    }
}

Note : The only thing that can be noted here is that at the time of implementing test()
methods from two different interfaces in a single class, the public modifier is not
required. If you define public modifier for the implementation of test() method in
class “abc” then it will give you error “The modifier ‘public’ is not valid for this item”.

How to call those implemented methods from another class?
To access methods implemented in a class “abc” into another class, we need to
use respected interface rather than class “abc”.

i.e. If I need to use method of interface i1 then I need to do code as follow.

i1 testi1=new abc();
i1.test(10);

Above code will call test() method of interface i1. In the similar manner we can call
test() method of interface i2. If we need to call both the method with one instance of
class “abc” then we need to cast “abc” class into an interface of which method we
are intended to call as demonstrated below.

abc testabc=new abc();
(testabc as i1).test(10);
(testabc as i2).test(10);

What if I has a method inside class “abc” with same signature prototyped in
interface i1 and i2 (those interfaces we have implemented in class “abc”)?
In that case we can call the method in a normal way with the instance of class
“abc”.
i.e.

public class abc: i1, i2
{
  void i1.test(int a)
  {
    Console.WriteLine(“i1 implementation: “ + a);
  }

 void i2.test(int a)
 {
   Console.WriteLine(“i2 implementation: “ + a);
 }

 void test(int a)
 {
   Console.WriteLine(“Normal method inside the class: ” + a);
 }
}
//To call the method normally.
abc testabc=new abc();
testabc.test(10);

How we can access implemented method of i1 from inside the implemented
method of i1, in a class “abc” or vice-versa?
It’s simple. We need to cast “this” into respected interface to use it’s method.
i.e.
public class abc: i1, i2
{
  void i1.test(int a)
  {
    Console.WriteLine(“i1 implementation: “ + a);
  }

    void i2.test(int a)
    {
      Console.WriteLine(“i2 implementation: “ + a);
      (this as i1).test(a + 20);
    }
}

Scenario #2
Which are the things allowed inside an interface in case of C#? (In other way
can automated property/event/delegate…etc allowed inside an interface
while using C#.NET?)

First thing first is method signature can be declared in an interface, it is the purpose
of an interface. Except method signature, property declaration and event declaration
are also allowed inside an interface.

Property Declaration inside an Interface

interface Itest
{
  int a { get; set; }
  int b { get; set; }
}

The only thing you need to care here is that, you need to implement these properties
in an implemented class. Compiler will not understand these declared properties as
automated properties. In a class if we write properties like this then it should be
considered as an automated properties, implementation is not required in that case.
i.e. Implementation of properties defined in Itest
class Test:ITest
{
  int aVar = 0;
  int bVar = 0;
  public int a
  {
    get
    {
return aVar;
     }
     set
     {
       aVar = value;
     }
    }
    public int b
    {
      get
      {
        return bVar;
      }
      set
      {
        bVar = value;
      }
    }
}

Event Declaration inside an Interface

public delegate void ChangedEventHandler
(object sender, EventArgs e);
interface Itest
{
  event ChangedEventHandler Changed;
}

Now to use this event inside the implemented class, following is an example.

Class Test: Itest
{
  public void BindEvent()
  {
    if(ChangedEventHandler!=null)
     Changed+=new ChangedEventHandler(Test_Changed);
  }
  void Test_Changed(object sender, EventArgs e)
  {
    //Event Fired
  }
}

This way you can confirm that all the implementer classes implemented the event to
become sync with the interface design. So that all the classes can be called in a
similar pattern designed by an interface.

Scenario #3
I have one interface Itest as defined below.

Interface Itest
{
  int sum(int a, int b);
}

I have implemented the interface into Calculator class as follow.

Class Calculator:ITest
{
  public int sum(int a, int b)
  {
    return (a+b);
  }
}

I have one more class named ScientificCalculator derived from Calculator class
having same method with same signature.

Class ScientificCalculator:Calculator
{
  public int sum(int a, int b)
  {
    return base.sum(a,b);
  }
}

Can it be possible to access sum method of calculator class if I created instance of
ScientificCalculator class by assigning it to interface Itest?.
i.e.
Itest itest = new ScientificCalculator();

Now is it possible to access sum method of Calculator class through object itest?
Yes, we can access it but for that we need to cast itest object into Calculator class.

((Calculator)itest).Sum(20, 30);

If you access directly sum method then it obviously refer sum method of class
ScientificCalculator.

Weitere ähnliche Inhalte

Was ist angesagt?

Lambda Expressions in C# From Beginner To Expert - Jaliya Udagedara
Lambda Expressions in C# From Beginner To Expert - Jaliya UdagedaraLambda Expressions in C# From Beginner To Expert - Jaliya Udagedara
Lambda Expressions in C# From Beginner To Expert - Jaliya UdagedaraJaliya Udagedara
 
Test driven development
Test driven developmentTest driven development
Test driven developmentXebia India
 
15review(abstract classandinterfaces)
15review(abstract classandinterfaces)15review(abstract classandinterfaces)
15review(abstract classandinterfaces)IIUM
 
Operators used in vb.net
Operators used in vb.netOperators used in vb.net
Operators used in vb.netJaya Kumari
 
Introduction of C# BY Adarsh Singh
Introduction of C# BY Adarsh SinghIntroduction of C# BY Adarsh Singh
Introduction of C# BY Adarsh Singhsinghadarsh
 
Odersky week1 notes
Odersky week1 notesOdersky week1 notes
Odersky week1 notesDoug Chang
 
Introduction to Matlab Scripts
Introduction to Matlab ScriptsIntroduction to Matlab Scripts
Introduction to Matlab ScriptsShameer Ahmed Koya
 
Templates exception handling
Templates exception handlingTemplates exception handling
Templates exception handlingsanya6900
 
Handling inputs via scanner class
Handling inputs via scanner classHandling inputs via scanner class
Handling inputs via scanner classsimarsimmygrewal
 
Storage Class Specifiers in C++
Storage Class Specifiers in C++Storage Class Specifiers in C++
Storage Class Specifiers in C++Reddhi Basu
 

Was ist angesagt? (20)

Intake 37 4
Intake 37 4Intake 37 4
Intake 37 4
 
Presentation
PresentationPresentation
Presentation
 
Lambda Expressions in C# From Beginner To Expert - Jaliya Udagedara
Lambda Expressions in C# From Beginner To Expert - Jaliya UdagedaraLambda Expressions in C# From Beginner To Expert - Jaliya Udagedara
Lambda Expressions in C# From Beginner To Expert - Jaliya Udagedara
 
Test driven development
Test driven developmentTest driven development
Test driven development
 
Intake 37 5
Intake 37 5Intake 37 5
Intake 37 5
 
Java adapter
Java adapterJava adapter
Java adapter
 
15review(abstract classandinterfaces)
15review(abstract classandinterfaces)15review(abstract classandinterfaces)
15review(abstract classandinterfaces)
 
Operators used in vb.net
Operators used in vb.netOperators used in vb.net
Operators used in vb.net
 
Operators in java
Operators in javaOperators in java
Operators in java
 
Learn Java Part 2
Learn Java Part 2Learn Java Part 2
Learn Java Part 2
 
Introduction of C# BY Adarsh Singh
Introduction of C# BY Adarsh SinghIntroduction of C# BY Adarsh Singh
Introduction of C# BY Adarsh Singh
 
Odersky week1 notes
Odersky week1 notesOdersky week1 notes
Odersky week1 notes
 
Introduction to Matlab Scripts
Introduction to Matlab ScriptsIntroduction to Matlab Scripts
Introduction to Matlab Scripts
 
Templates exception handling
Templates exception handlingTemplates exception handling
Templates exception handling
 
Experiment 9(exceptions)
Experiment 9(exceptions)Experiment 9(exceptions)
Experiment 9(exceptions)
 
Functions
FunctionsFunctions
Functions
 
Handling inputs via scanner class
Handling inputs via scanner classHandling inputs via scanner class
Handling inputs via scanner class
 
C# - Part 1
C# - Part 1C# - Part 1
C# - Part 1
 
Inheritance
InheritanceInheritance
Inheritance
 
Storage Class Specifiers in C++
Storage Class Specifiers in C++Storage Class Specifiers in C++
Storage Class Specifiers in C++
 

Andere mochten auch

Mvc interview questions – deep dive jinal desai
Mvc interview questions – deep dive   jinal desaiMvc interview questions – deep dive   jinal desai
Mvc interview questions – deep dive jinal desaijinaldesailive
 
Top 100 .Net Interview Questions and Answer
Top 100 .Net Interview Questions and AnswerTop 100 .Net Interview Questions and Answer
Top 100 .Net Interview Questions and AnswerVineet Kumar Saini
 
MS.Net Interview Questions - Simplified
MS.Net Interview Questions - SimplifiedMS.Net Interview Questions - Simplified
MS.Net Interview Questions - SimplifiedMohd Manzoor Ahmed
 
Architecture of .net framework
Architecture of .net frameworkArchitecture of .net framework
Architecture of .net frameworkThen Murugeshwari
 

Andere mochten auch (6)

Mvc interview questions – deep dive jinal desai
Mvc interview questions – deep dive   jinal desaiMvc interview questions – deep dive   jinal desai
Mvc interview questions – deep dive jinal desai
 
200+sql server interview_questions
200+sql server interview_questions200+sql server interview_questions
200+sql server interview_questions
 
Top 100 .Net Interview Questions and Answer
Top 100 .Net Interview Questions and AnswerTop 100 .Net Interview Questions and Answer
Top 100 .Net Interview Questions and Answer
 
MS.Net Interview Questions - Simplified
MS.Net Interview Questions - SimplifiedMS.Net Interview Questions - Simplified
MS.Net Interview Questions - Simplified
 
Architecture of .net framework
Architecture of .net frameworkArchitecture of .net framework
Architecture of .net framework
 
Dotnet basics
Dotnet basicsDotnet basics
Dotnet basics
 

Ähnlich wie OOPS With CSharp - Implementing methods from multiple interfaces

ECET 370 Exceptional Education - snaptutorial.com
ECET 370 Exceptional Education - snaptutorial.com ECET 370 Exceptional Education - snaptutorial.com
ECET 370 Exceptional Education - snaptutorial.com donaldzs157
 
Indicate whether each of the following statements is true or false.docx
Indicate whether each of the following statements is true or false.docxIndicate whether each of the following statements is true or false.docx
Indicate whether each of the following statements is true or false.docxmigdalialyle
 
Ecet 370 Education Organization -- snaptutorial.com
Ecet 370   Education Organization -- snaptutorial.comEcet 370   Education Organization -- snaptutorial.com
Ecet 370 Education Organization -- snaptutorial.comDavisMurphyB81
 
Session 6_Java Interfaces_Details_Programs.pdf
Session 6_Java Interfaces_Details_Programs.pdfSession 6_Java Interfaces_Details_Programs.pdf
Session 6_Java Interfaces_Details_Programs.pdfTabassumMaktum
 
Session 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .pptSession 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .pptTabassumMaktum
 
Session 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .pptSession 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .pptTabassumMaktum
 
Interface
InterfaceInterface
Interfacevvpadhu
 
Still Comparing "this" Pointer to Null?
Still Comparing "this" Pointer to Null?Still Comparing "this" Pointer to Null?
Still Comparing "this" Pointer to Null?Andrey Karpov
 
MODULE_3_Methods and Classes Overloading.pptx
MODULE_3_Methods and Classes Overloading.pptxMODULE_3_Methods and Classes Overloading.pptx
MODULE_3_Methods and Classes Overloading.pptxVeerannaKotagi1
 
Jdk1.5 Features
Jdk1.5 FeaturesJdk1.5 Features
Jdk1.5 Featuresindia_mani
 
C++ Interview Question And Answer
C++ Interview Question And AnswerC++ Interview Question And Answer
C++ Interview Question And AnswerJagan Mohan Bishoyi
 
C++ questions And Answer
C++ questions And AnswerC++ questions And Answer
C++ questions And Answerlavparmar007
 

Ähnlich wie OOPS With CSharp - Implementing methods from multiple interfaces (20)

Interfaces c#
Interfaces c#Interfaces c#
Interfaces c#
 
ECET 370 Exceptional Education - snaptutorial.com
ECET 370 Exceptional Education - snaptutorial.com ECET 370 Exceptional Education - snaptutorial.com
ECET 370 Exceptional Education - snaptutorial.com
 
Indicate whether each of the following statements is true or false.docx
Indicate whether each of the following statements is true or false.docxIndicate whether each of the following statements is true or false.docx
Indicate whether each of the following statements is true or false.docx
 
Java 8 features
Java 8 featuresJava 8 features
Java 8 features
 
Ecet 370 Education Organization -- snaptutorial.com
Ecet 370   Education Organization -- snaptutorial.comEcet 370   Education Organization -- snaptutorial.com
Ecet 370 Education Organization -- snaptutorial.com
 
Java interface
Java interfaceJava interface
Java interface
 
Exception
ExceptionException
Exception
 
Interface
InterfaceInterface
Interface
 
Java interface
Java interfaceJava interface
Java interface
 
Notes on c++
Notes on c++Notes on c++
Notes on c++
 
Session 6_Java Interfaces_Details_Programs.pdf
Session 6_Java Interfaces_Details_Programs.pdfSession 6_Java Interfaces_Details_Programs.pdf
Session 6_Java Interfaces_Details_Programs.pdf
 
Session 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .pptSession 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .ppt
 
Session 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .pptSession 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .ppt
 
Java 2
Java   2Java   2
Java 2
 
Interface
InterfaceInterface
Interface
 
Still Comparing "this" Pointer to Null?
Still Comparing "this" Pointer to Null?Still Comparing "this" Pointer to Null?
Still Comparing "this" Pointer to Null?
 
MODULE_3_Methods and Classes Overloading.pptx
MODULE_3_Methods and Classes Overloading.pptxMODULE_3_Methods and Classes Overloading.pptx
MODULE_3_Methods and Classes Overloading.pptx
 
Jdk1.5 Features
Jdk1.5 FeaturesJdk1.5 Features
Jdk1.5 Features
 
C++ Interview Question And Answer
C++ Interview Question And AnswerC++ Interview Question And Answer
C++ Interview Question And Answer
 
C++ questions And Answer
C++ questions And AnswerC++ questions And Answer
C++ questions And Answer
 

Kürzlich hochgeladen

08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 

Kürzlich hochgeladen (20)

08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 

OOPS With CSharp - Implementing methods from multiple interfaces

  • 1. Articles from Jinal Desai .NET OOPS With CSharp 2012-11-10 13:11:59 Jinal Desai Some scenarios I came across while working with C# where OOPs funda deviated at some level to provide more flexibility. Suggest me some more scenarios if I miss anyone. Scenario # 1. Two interface having same method signature is derived by a class. How to implement methods in a class with same signature from different interfaces? We can use named identifiers to identify the common method we implemented based on two different interfaces. i.e. If there is two interfaces i1 and i2, both has one method with same signature (void test(int a)), then at the time of implementing these methods inside class “abc” we can use i1.test and i2.test to differentiate the implementation of methods from two different interfaces having same signature. Interface i1 { void test(int a); } interface i2 { void test(int a); } public class abc: i1, i2 { void i1.test(int a) { Console.WriteLine(“i1 implementation: “ + a); } void i2.test(int a) { Console.WriteLine(“i2 implementation: “ + a); } } Note : The only thing that can be noted here is that at the time of implementing test() methods from two different interfaces in a single class, the public modifier is not
  • 2. required. If you define public modifier for the implementation of test() method in class “abc” then it will give you error “The modifier ‘public’ is not valid for this item”. How to call those implemented methods from another class? To access methods implemented in a class “abc” into another class, we need to use respected interface rather than class “abc”. i.e. If I need to use method of interface i1 then I need to do code as follow. i1 testi1=new abc(); i1.test(10); Above code will call test() method of interface i1. In the similar manner we can call test() method of interface i2. If we need to call both the method with one instance of class “abc” then we need to cast “abc” class into an interface of which method we are intended to call as demonstrated below. abc testabc=new abc(); (testabc as i1).test(10); (testabc as i2).test(10); What if I has a method inside class “abc” with same signature prototyped in interface i1 and i2 (those interfaces we have implemented in class “abc”)? In that case we can call the method in a normal way with the instance of class “abc”. i.e. public class abc: i1, i2 { void i1.test(int a) { Console.WriteLine(“i1 implementation: “ + a); } void i2.test(int a) { Console.WriteLine(“i2 implementation: “ + a); } void test(int a) { Console.WriteLine(“Normal method inside the class: ” + a); } } //To call the method normally. abc testabc=new abc(); testabc.test(10); How we can access implemented method of i1 from inside the implemented
  • 3. method of i1, in a class “abc” or vice-versa? It’s simple. We need to cast “this” into respected interface to use it’s method. i.e. public class abc: i1, i2 { void i1.test(int a) { Console.WriteLine(“i1 implementation: “ + a); } void i2.test(int a) { Console.WriteLine(“i2 implementation: “ + a); (this as i1).test(a + 20); } } Scenario #2 Which are the things allowed inside an interface in case of C#? (In other way can automated property/event/delegate…etc allowed inside an interface while using C#.NET?) First thing first is method signature can be declared in an interface, it is the purpose of an interface. Except method signature, property declaration and event declaration are also allowed inside an interface. Property Declaration inside an Interface interface Itest { int a { get; set; } int b { get; set; } } The only thing you need to care here is that, you need to implement these properties in an implemented class. Compiler will not understand these declared properties as automated properties. In a class if we write properties like this then it should be considered as an automated properties, implementation is not required in that case. i.e. Implementation of properties defined in Itest class Test:ITest { int aVar = 0; int bVar = 0; public int a { get {
  • 4. return aVar; } set { aVar = value; } } public int b { get { return bVar; } set { bVar = value; } } } Event Declaration inside an Interface public delegate void ChangedEventHandler (object sender, EventArgs e); interface Itest { event ChangedEventHandler Changed; } Now to use this event inside the implemented class, following is an example. Class Test: Itest { public void BindEvent() { if(ChangedEventHandler!=null) Changed+=new ChangedEventHandler(Test_Changed); } void Test_Changed(object sender, EventArgs e) { //Event Fired } } This way you can confirm that all the implementer classes implemented the event to become sync with the interface design. So that all the classes can be called in a similar pattern designed by an interface. Scenario #3
  • 5. I have one interface Itest as defined below. Interface Itest { int sum(int a, int b); } I have implemented the interface into Calculator class as follow. Class Calculator:ITest { public int sum(int a, int b) { return (a+b); } } I have one more class named ScientificCalculator derived from Calculator class having same method with same signature. Class ScientificCalculator:Calculator { public int sum(int a, int b) { return base.sum(a,b); } } Can it be possible to access sum method of calculator class if I created instance of ScientificCalculator class by assigning it to interface Itest?. i.e. Itest itest = new ScientificCalculator(); Now is it possible to access sum method of Calculator class through object itest? Yes, we can access it but for that we need to cast itest object into Calculator class. ((Calculator)itest).Sum(20, 30); If you access directly sum method then it obviously refer sum method of class ScientificCalculator.