No announcements
Found 2457990 threads
-
0 Votes
abstract class
"Abstract classes are closely related to interfaces.Answered | 2 Replies | 4422 Views | Created by Gopi kakileti - Friday, July 1, 2011 1:21 PM | Last reply by Min Zhu - Monday, July 4, 2011 2:42 AM -
4 Votes
Use of Abstract class
Same goes for abstract, method have no implementation!Answered | 10 Replies | 2584 Views | Created by tigerinworld - Monday, September 10, 2012 6:20 AM | Last reply by Sehnsucht_Fr - Monday, September 10, 2012 2:56 PM -
3 Votes
c# classes abstract
@Cor, it's okay for people to write what they think as long as it's constructive without anyone to point fingers at them and tell them that their post is meaningless even when they ...Answered | 16 Replies | 1937 Views | Created by Sambo H - Friday, March 7, 2014 10:39 AM | Last reply by JendaPerl - Monday, March 10, 2014 9:29 AM -
1 Votes
Get the class and methods name of an abstract sealed class
It is possible to make an abstract sealed class in the c++ cli.Answered | 3 Replies | 2142 Views | Created by OrionWalli - Monday, September 17, 2012 2:21 PM | Last reply by Reed Copsey, Jr - Tuesday, September 18, 2012 3:30 PM -
3 Votes
main difference between virtual and abstract method
Abstract methods can reside in Abstract Class only. you cannot put abstract method in concrete class.Answered | 4 Replies | 6714 Views | Created by Droisys - Tuesday, December 27, 2011 10:26 AM | Last reply by Neeraj Wadhwani - Wednesday, December 4, 2013 5:29 AM -
0 Votes
Calling Abstract Class Instance Method direclty
class PQR : XYZ { public override void MyMethod() { base.MyMethod(); // calls base class method } ...Answered | 2 Replies | 3229 Views | Created by Srinivas Akella - Tuesday, February 2, 2010 1:25 PM | Last reply by Rudedog2 - Tuesday, February 2, 2010 1:54 PM -
3 Votes
Abstract classes and Interfaces
I would define the operations (methods and properties) common to a Person in that class.Answered | 8 Replies | 3323 Views | Created by SNK08 - Sunday, March 29, 2009 7:34 AM | Last reply by Chris B. Snyder - Monday, March 30, 2009 6:58 PM -
1 Votes
Abstract class vs Interface
To the point where even marking anything as abstract is unessesary in an interface - it simply is abstract.Answered | 8 Replies | 1407 Views | Created by pianoboyCoder - Tuesday, October 6, 2015 4:52 AM | Last reply by Ante Meridian - Wednesday, October 7, 2015 4:13 AM -
0 Votes
Non-abstract and non-extern method error
System.Runtime.InteropServices; using System.Text; namespace Magma { public static class Wrapper { public const string ...Answered | 2 Replies | 2142 Views | Created by TrojanNemo - Wednesday, May 29, 2013 5:56 AM | Last reply by TrojanNemo - Wednesday, May 29, 2013 11:51 AM -
3 Votes
The difference between Factory method design pattern and Abstract Factory
In any case you could create 2 different classes with one factory method in each one, or you could create one abstract factory which defines 2 ...Answered | 6 Replies | 6910 Views | Created by Fly_fish - Wednesday, August 24, 2011 3:25 PM | Last reply by Fly_fish - Wednesday, August 31, 2011 10:11 AM -
3 Votes
Why C# Abstract classes must implement/declare inherited Interface methods?
And what is the difference between C++ interfaces and abstract classes.Answered | 23 Replies | 20742 Views | Created by jeff00seattle_2 - Wednesday, February 18, 2009 8:22 AM | Last reply by jeff00seattle_2 - Wednesday, February 18, 2009 7:15 PM -
1 Votes
Abstract Class and Interfaces
So, for point #3, similarly, any class inheriting an abstract class must implement all abstract methods (delegates, events, etc.).Answered | 7 Replies | 4195 Views | Created by Mahender - Tuesday, June 17, 2008 4:01 AM | Last reply by Greg Beech - Wednesday, June 18, 2008 9:38 PM -
0 Votes
abstract class needs to implement interface
The abstract base class is NOT defining any default implementation for you.Answered | 6 Replies | 3121 Views | Created by Michał Januszczyk - Wednesday, March 11, 2009 6:27 PM | Last reply by Rudedog2 - Wednesday, March 11, 2009 11:54 PM -
6 Votes
Abstract Class vs Interface
To offer another way to look at it, each abstract member defines something that needs to be filled in.Answered | 6 Replies | 4698 Views | Created by Ritesh Handa - Thursday, October 8, 2009 1:55 PM | Last reply by IanG - Friday, October 9, 2009 6:52 AM -
6 Votes
Why abstract class allows constructor ?
"Because abstract classes should never be instantiated, it is important to correctly define their constructors.Answered | 4 Replies | 22585 Views | Created by priya2silverlight - Friday, July 23, 2010 3:20 AM | Last reply by Manish Sati - Friday, July 23, 2010 6:05 AM -
0 Votes
Interface vs abstract class
We can have an Interface that defines all trees, and abstract classes that defines fruit, and wild trees.Answered | 11 Replies | 6182 Views | Created by It_s Meee - Thursday, August 5, 2010 9:51 AM | Last reply by JohnGrove - Wednesday, August 11, 2010 7:09 PM -
1 Votes
Abstract class and interface
An abstract class contains implementation, where an interface is only a contract.Answered | 2 Replies | 3650 Views | Created by krishnapriya12 - Friday, December 4, 2009 4:58 PM | Last reply by Matthew Watson - Friday, December 4, 2009 6:29 PM -
0 Votes
Abstract generic class inside an Abstract generic class
You want to call the wheels of a Car using the abstract class Vehicle, while the wheels are defined in the class Car which has as base class Vehicle?Answered | 3 Replies | 2670 Views | Created by Remy BURNEY - Monday, September 6, 2010 11:47 PM | Last reply by Cor Ligthert - Tuesday, September 7, 2010 9:36 AM -
3 Votes
Difference between Abstract factory and Factory
The Abstract Factory constructs complex objects based upon a set of parameters that define our desired object.Answered | 14 Replies | 7892 Views | Created by senthilkr - Wednesday, June 2, 2010 4:44 PM | Last reply by zzfima - Tuesday, November 12, 2013 11:20 AM -
0 Votes
Execute an overrided method of a concrete class from parent abstract class?
Perhaps you need to post some pseudo code of what your abstract base class looks like.Answered | 7 Replies | 4935 Views | Created by FruitBatInShades - Monday, August 27, 2012 10:36 AM | Last reply by Rudedog2 - Monday, August 27, 2012 1:35 PM
No announcements