概述
实例8.1
#include<iostream>
inline double square(double x)
{
return x * x;
}
int main()
{
using namespace std;
double a, b;
double c = 13.0;
a = square(5.0);
b = square(4.5 + 7.5);
cout << "a = " << a << ",b = " << b << "n";
cout << "c = " << c;
cout << ",C squared = " << square(c++) << "n";
cout << "Now c = " << c << "n";
system("pause");
return 0;
}
实例8.2
#include<iostream>
int main()
{
using namespace std;
int rats = 101;
int &rodents = rats;
cout << "rats = " << rats;
cout << ",rodents = " << rodents << endl;
rodents++;
cout << "rats = " << rats;
cout << ",rodents = " << rodents << endl;
cout << "rats address = " << &rats;
cout << ",rodents address = " << &rodents << endl;
system("pause");
return 0;
}
实例8.3
#include<iostream>
int main()
{
using namespace std;
int rats = 101;
int &rodents = rats;
cout << "rats = " << rats;
cout << ",rodents = " << rodents << endl;
cout << "rat address = " << &rats;
cout << ",rodents address = " << &rodents << endl;
int bunnies = 50;
rodents = bunnies;
cout << "bunnies = " << bunnies;
cout << ",rats = " << rats;
cout << ",rodents = " << rodents << endl;
cout << "bunnies address = " << &bunnies;
cout << ",rodents address = " << &rodents << endl;
system("pause");
return 0;
}
实例8.4
#include<iostream>
void swapr(int &a, int &b);
void swapp(int *p, int *q);
void swapv(int a, int b);
int main()
{
using namespace std;
int wallet1 = 300;
int wallet2 = 350;
cout << "wallet1 = $" << wallet1;
cout << " wallet2 = $" << wallet2 << endl;
cout << "Using reference to swap contents:n";
swapr(wallet1, wallet2);
cout << "wallet1 = $" << wallet1;
cout << "wallet2 = $" << wallet2 << endl;
cout << "Using pointers to swap contents again:n";
swapp(&wallet1, &wallet2);
cout << "wallet1 = $" << wallet1;
cout << "wallet2 = $" << wallet2 << endl;
cout << "Trying to use passing by value:n";
swapv(wallet1, wallet2);
cout << "wallet1 = &" << wallet1;
cout << " wallet2 = $" << wallet2 << endl;
system("pause");
return 0;
}
void swapr(int &a, int &b)
{
int temp;
temp = a;
a = b;
b = temp;
}
void swapp(int *p, int *q)
{
int temp;
temp = *p;
*p = *q;
*q = temp;
}
void swapv(int a, int b)
{
int temp;
temp = a;
a = b;
b = temp;
}
实例8.5
#include<iostream>
double cube(double a);
double refcube(double &ra);
int main()
{
using namespace std;
double x = 3.0;
cout << cube(x);
cout << " = cube of " << x << endl;
cout << refcube(x);
cout << "= cube of " << x << endl;
system("pause");
return 0;
}
double cube(double a)
{
a *= a * a;
return a;
}
double refcube(double &ra)
{
ra *= ra * ra;
return ra;
}
实例8.6
#include<iostream>
#include<string>
struct free_throws
{
std::string name;
int made;
int attempts;
float percent;
};
void display(const free_throws &ft);
void set_pc(free_throws &ft);
free_throws &accumulate(free_throws &target, const free_throws &source);
int main()
{
free_throws one = { "Ifelsa Branch",13,14 };
free_throws two = { "Andor Knott",10,16 };
free_throws three = { "Minnie Max",7,9 };
free_throws four = { "Whily Looper",5,9 };
free_throws five = { "Long Long",6,14 };
free_throws team = { "Throwgoods",0,0 };
free_throws dup;
set_pc(one);
display(one);
accumulate(team, one);
display(team);
display(accumulate(team, two));
accumulate(accumulate(team, three), four);
display(team);
dup = accumulate(team, five);
std::cout << "Displaying team:n";
display(team);
std::cout << "Displaying dup after assignment:n";
display(dup);
set_pc(four);
accumulate(dup, five) = four;
std::cout << "Displaying dup after ill-advised assignment:n";
display(dup);
system("pause");
return 0;
}
void display(const free_throws &ft)
{
using std::cout;
cout << "Name: " << ft.name << 'n';
cout << "
Made: " << ft.made << 't';
cout << "Attempts: " << ft.attempts << 't';
cout << "Percent:" << ft.percent << 'n';
}
void set_pc(free_throws &ft)
{
if (ft.attempts != 0)
ft.percent = 100.0f * float(ft.made) / float(ft.attempts);
else
ft.percent = 0;
}
free_throws &accumulate(free_throws &target, const free_throws &source)
{
target.attempts += source.attempts;
target.made += source.made;
set_pc(target);
return target;
}
实例8.7
#include<iostream>
#include<string>
using namespace std;
string version1(const string &s1, const string &s2);
const string &version2(string &s1, const string &s2);
const string &version3(string &s1, const string &s2);
int main()
{
string input;
string copy;
string result;
cout << "Enter a string:";
getline(cin, input);
copy = input;
cout << "Your string as entered:" << input << endl;
result = version1(input, "***");
cout << "Your string enhanced:" << result << endl;
cout << "Your original string:" << input << endl;
result = version2(input, "###");
cout << "Your string enhanced:" << result << endl;
cout << "Your original string:" << input << endl;
cout << "Resetting original string.n";
input = copy;
result = version3(input, "@@@");
cout << "Your string enhanced:" << result << endl;
cout << "Your original string:" << input << endl;
system("pause");
return 0;
}
string version1(const string &s1, const string &s2)
{
string temp;
temp = s2 + s1 + s2;
return temp;
}
const string &version2(string &s1, const string &s2)
{
s1 = s2 + s1 + s2;
return s1;
}
const string &version3(string &s1, const string &s2)
{
string temp;
temp = s2 + s1 + s2;
return temp;
}
实例8.8
#include<iostream>
#include<fstream>
#include<cstdlib>
using namespace std;
void file_it(ostream &os, double fo, const double fe[], int n);
const int LIMIT = 5;
int main()
{
ofstream fout;
const char *fn = "ep-data.txt";
fout.open(fn);
if (!fout.is_open())
{
cout << "Can't open " << fn << endl;
exit(EXIT_FAILURE);
}
double objective;
cout << "Enter the focal lengh of your "
"telescope objectives in mm:";
cin >> objective;
double eps[LIMIT];
cout << "Enter the focal lengths,in mm,of " << LIMIT
<< " eyepieces:n";
for (int i = 0; i < LIMIT; i++)
{
cout << "Eyepiece #" << i + 1 << ":";
cin >> eps[i];
}
file_it(fout, objective, eps, LIMIT);
file_it(cout, objective, eps, LIMIT);
cout << "Donen";
system("pause");
return 0;
}
void file_it(ostream &os, double fo, const double fe[], int n)
{
ios_base::fmtflags initial;
initial = os.setf(ios_base::fixed);
os.precision(0);
os << "Focal length of objective:" << fo << " mmn";
os.setf(ios::showpoint);
os.precision(1);
os.width(12);
os << "f.1. eyepiece";
os.width(15);
os << "magnification" << endl;
for (int i = 0; i < n; i++)
{
os.width(12);
os << fe[i];
os.width(15);
os << int(fo / fe[i] + 0.5) << endl;
}
os.setf(initial);
}
实例8.9
#include<iostream>
const int ArSize = 80;
char *left(const char *str, int n = 1);
int main()
{
using namespace std;
char sample[ArSize];
cout << "Enter a string:n";
cin.get(sample, ArSize);
char *ps = left(sample, 4);
cout << ps << endl;
delete[] ps;
ps = left(sample);
cout << ps << endl;
delete[] ps;
system("pause");
return 0;
}
char *left(const char *str, int n)
{
if (n < 0)
n = 0;
char *p = new char[n + 1];
int i;
for (i = 0; i < n&&str[i]; i++)
p[i] = str[i];
while (i <= n)
p[i++] = '