Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
vfunc_ex.cpp
Upload User: dq031136
Upload Date: 2022-08-08
Package Size: 802k
Code Size: 1k
Category:
Visual C++ Books
Development Platform:
C++ Builder
- #include <iostream.h>
- class convert
- {
- protected:
- double val1;
- double val2;
- public:
- convert(double i)
- {
- val1 = i;
- }
- double getconv(void) {return val2;}
- double getinit(void) {return val1;}
- virtual void compute(void) = 0;
- };
- // liters to gallons
- class l_to_g : public convert {
- public:
- l_to_g(double i) : convert(i) { }
- void compute(void)
- {
- val2 = val1 / 3.7854;
- }
- };
- // Fahrenheit to Celsius
- class f_to_c : public convert {
- public:
- f_to_c(double i) : convert(i) { }
- void compute(void)
- {
- val2 = (val1 - 32) / 1.8;
- }
- };
- void main(void)
- {
- convert *p; // pointer to base class
- l_to_g lgob(4);
- f_to_c fcob(70);
- p = &lgob; // convert liters to gallons
- cout << p->getinit() << " liters is ";
- p->compute();
- cout << p->getconv() << " gallons." << endl;
- p = &fcob; // convert fahrenheit to celsius
- cout << p->getinit() << " in Fahrenheit is ";
- p->compute();
- cout << p->getconv() << " Celsius." << endl;
- }