perldoc > Class::Virtual

📖 NAME

Class::Virtual — Base class for virtual base classes.

🚀 Quick Reference

Use CaseCommandDescription
Declare virtual methods__PACKAGE__->virtual_methods(qw(new foo bar this that))Define which methods must be implemented by subclasses.
Check for missing implementationsmy @missing = __PACKAGE__->missing_methodsReturn list of methods not yet implemented by the subclass.
List all required virtual methodsmy @must_implement = __PACKAGE__->virtual_methodsRetrieve the list of methods a subclass is obligated to implement.

📝 SYNOPSIS

      package My::Virtual::Idaho;
      use base qw(Class::Virtual);

      __PACKAGE__->virtual_methods(qw(new foo bar this that));


      package My::Private::Idaho;
      use base qw(My::Virtual::Idaho);

      # Check to make sure My::Private::Idaho implemented everything
      my @missing = __PACKAGE__->missing_methods;
      die __PACKAGE__ . ' forgot to implement ' . join ', ', @missing
          if @missing;

      # If My::Private::Idaho forgot to implement new(), the program will
      # halt and yell about that.
      my $idaho = My::Private::Idaho->new;

      # See what methods we're obligated to implement.
      my @must_implement = __PACKAGE__->virtual_methods;

📖 DESCRIPTION

THIS MODULE IS DISCOURAGED! Avoid using it for new code. There's nothing wrong with it, but there are better ways to accomplish the same thing. Look into the Moose ecosystem.

This is a base class for implementing virtual base classes (what some people call an abstract class). Kinda kooky. It allows you to explicitly declare what methods are virtual and that must be implemented by subclasses. This might seem silly, since your program will halt and catch fire when an unimplemented virtual method is hit anyway, but there's some benefits.

🔧 Methods

⚠️ CAVEATS AND BUGS

Autoloaded methods are currently not recognized. I have no idea how to solve this.

👤 AUTHOR

Michael G Schwern <schwern AT pobox.com>

⚖️ LEGAL

Copyright 2000-2015 Michael G Schwern

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See <http://dev.perl.org/licenses/>

📚 SEE ALSO

Class::Virtually::Abstract

Class::Virtual
📖 NAME 🚀 Quick Reference 📝 SYNOPSIS 📖 DESCRIPTION
🔧 Methods
⚠️ CAVEATS AND BUGS 👤 AUTHOR ⚖️ LEGAL 📚 SEE ALSO

Generated by phpman v4.9.29 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-07-22 01:33 @2600:1f28:365:80b0:d8a5:c3c6:bf94:28c0
CrawledBy CCBot/2.0 (https://commoncrawl.org/faq/)
Valid XHTML 1.0 Transitional!Valid CSS!
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format