0
Completed

Why need to create class instead of interface ?( Replace Method with Method Object.)

mahendrag gajera il y a 7 ans mis à jour par anonymous il y a 7 ans 2

Hello Sir,


A your suggestion i do agree with you create new class for very long method as u suggested.

In this case how do you write unit test?

Is it possible to create interface instead of calss ?

Please give explanation.


Solution

Solution
Completed

Hey Mahendra,


Nice question! Here's what I think:

1. You need a class anyway, since you have to put the extracted method body somewhere. You can not put it inside interface, right?

2. You can always extract interface from a resulting class later (see Extract Interface refactoring).

Solution
Completed

Hey Mahendra,


Nice question! Here's what I think:

1. You need a class anyway, since you have to put the extracted method body somewhere. You can not put it inside interface, right?

2. You can always extract interface from a resulting class later (see Extract Interface refactoring).

Appreciate to your answer .