Simple Example of VC ++

Source: Internet
Author: User

Simple Example of VC ++

// Clock_app.cpp
// # Include <iostream>
# Include "clock. H"

// Main Function
Int main ()
{
Clock myclock;// Define the object myclock, call the constructor implicitly, and use the initial value as the real parameter.
Cout <"First time set and output:" <Endl;
Myclock. settime ();// Set the time to the default value (because the default value is set during function declaration)
Myclock. Showtime ();// Display time
Cout <"second time set and output:" <Endl;
Myclock. settime (8, 30, 30 );// Set the time To 8:30:30.
Myclock. Showtime ();// Display time
}

// Clock. h
# Include <iostream>
Using namespace STD;

Class clock // Clock Declaration
{
Public: // External interface, Public member function
Void settime (INT newh = 0, int newm = 0, int news = 0 );
Void Showtime ();
PRIVATE: // Private Data Member
Int hour, minute, second;
};

// Clock. cpp
# Include "clock. H"

// Implementation of clock-class member functions
Void clock: settime (INT newh, int newm, int News)
{
Hour = newh;
Minute = newm;
Second = News;
}

Void clock: Showtime ()
{
Cout }

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.