CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jul 2009
    Location
    USA
    Posts
    49

    Resolved About abstract classes

    Why you can't declare a class abstract and final?

    Is there some internal rule the system just rejects, or what?

    Can somebody provide a sample program demonstrating this?

    Thanks,

    Coder752

  2. #2
    Join Date
    Oct 2008
    Posts
    77

    Re: About abstract classes

    final means "absolutely no child classes"
    abstract means " I must have child classes to implement what I have defined"

  3. #3
    Join Date
    Jul 2009
    Location
    USA
    Posts
    49

    Re: About abstract classes

    Thanks for the interpretation.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured