Skip to main content

Item 19: Differentiate among member functions, non-member functions, and friend functions.

Item 19: Differentiate among member functions, non-member functions, and friend functions.
The biggest difference between member functions and non-member functions is that member functions can be
virtual and non-member functions can't. As a result, if you have a function that has to be dynamically bound (see
Item 38), you've got to use a virtual function, and that virtual function must be a member of some class. It's as
simple as that. If your function doesn't need to be virtual, however, the water begins to muddy a bit.
Consider a class for representing rational numbers:
class Rational {
public:
Rational(int numerator = 0, int denominator = 1);
int numerator() const;
int denominator() const;
private:
...
};
As it stands now, this is a pretty useless class. (Using the terms of Item 18, the interface is certainly minimal,
but it's far from complete.) You know you'd like to support arithmetic operations like addition, subtraction,
multiplication, etc., but you're unsure whether you should implement them via a member function, a non-member
function, or possibly a non-member function that's a friend.
When in doubt, be object-oriented. You know that, say, multiplication of rational numbers is related to the
Rational class, so try bundling the operation with the class by making it a member function:
class Rational {
public:
...
const Rational operator*(const Rational& rhs) const;
};
(If you're unsure why this function is declared the way it is ? returning a const by-value result, but taking a
reference-to-const as its argument ? consult Items 21-23.)
Now you can multiply rational numbers with the greatest of ease:
Rational oneEighth(1, 8);
Rational oneHalf(1, 2);
Rational result = oneHalf * oneEighth; // fine
result = result * oneEighth; // fine
But you're not satisfied. You'd also like to support mixed-mode operations, where Rationals can be multiplied
with, for example, ints. When you try to do this, however, you find that it works only half the time:
result = oneHalf * 2;
result = 2 * oneHalf;
// fine
// error!
This is a bad omen. Multiplication is supposed to be commutative, remember?
The source of the problem becomes apparent when you rewrite the last two examples in their equivalent
functional form:
result = oneHalf.operator*(2);
// fine
result = 2.operator*(oneHalf);
// error!
The object oneHalf is an instance of a class that contains an operator*, so your compilers call that function.
However, the integer 2 has no associated class, hence no operator* member function. Your compilers will also
look for a non-member operator* (i.e., one that's in a visible namespace or is global) that can be called like
this,
result = operator*(2, oneHalf);
// error!
but there is no non-member operator* taking an int and a Rational, so the search fails.
Look again at the call that succeeds. You'll see that its second parameter is the integer 2, yet Rational::operator*
takes a Rational object as its argument. What's going on here? Why does 2 work in one position and not in the
other?
What's going on is implicit type conversion. Your compilers know you're passing an int and the function requires
a Rational, but they also know that they can conjure up a suitable Rational by calling the Rational constructor
with the int you provided, so that's what they do (see Item M19). In other words, they treat the call as if it had
been written more or less like this:
const Rational temp(2); // create a temporary
                       // Rational object from 2
result = oneHalf * temp; // same as
                        // oneHalf.operator*(temp);
Of course, they do this only when non-explicit constructors are involved, because explicit constructors can't be
used for implicit conversions; that's what explicit means. If Rational were defined like this,
class Rational {
public:
explicit Rational(int numerator = 0,
int denominator = 1);
...
// this ctor is
// now explicit
const Rational operator*(const Rational& rhs) const;
...
};
neither of these statements would compile:
result = oneHalf * 2;
result = 2 * oneHalf;
// error!
// error!
That would hardly qualify as support for mixed-mode arithmetic, but at least the behavior of the two statements
would be consistent.
The Rational class we've been examining, however, is designed to allow implicit conversions from built-in
types to Rationals ? that's why Rational's constructor isn't declared explicit. That being the case, compilers will
perform the implicit conversion necessary to allow result's first assignment to compile. In fact, your
handy-dandy compilers will perform this kind of implicit type conversion, if it's needed, on every parameter of
every function call. But they will do it only for parameters listed in the parameter list, never for the object on
which a member function is invoked, i.e., the object corresponding to *this inside a member function. That's why
this call works,
result = oneHalf.operator*(2);
// converts int -> Rational
and this one does not:
result = 2.operator*(oneHalf);
// doesn't convert
// int -> Rational
The first case involves a parameter listed in the function declaration, but the second one does not.
Nonetheless, you'd still like to support mixed-mode arithmetic, and the way to do it is by now perhaps clear:
make operator* a non-member function, thus allowing compilers to perform implicit type conversions on all
arguments:
class Rational {
...
// contains no operator*
};
// declare this globally or within a namespace; see
// Item M20 for why it's written as it is
const Rational operator*(const Rational& lhs,
const Rational& rhs)
{
return Rational(lhs.numerator() * rhs.numerator(),
lhs.denominator() * rhs.denominator());
}
Rational oneFourth(1, 4);
Rational result;
result = oneFourth * 2;
result = 2 * oneFourth;
// fine
// hooray, it works!
This is certainly a happy ending to the tale, but there is a nagging worry. Should operator* be made a friend of
the Rational class?
In this case, the answer is no, because operator* can be implemented entirely in terms of the class's public
interface. The code above shows one way to do it. Whenever you can avoid friend functions, you should,
because, much as in real life, friends are often more trouble than they're worth.
However, it's not uncommon for functions that are not members, yet are still conceptually part of a class
interface, to need access to the non-public members of the class.
As an example, let's fall back on a workhorse of this book, the String class. If you try to overload operator>>
and operator<< for reading and writing String objects, you'll quickly discover that they shouldn't be member
functions. If they were, you'd have to put the String object on the left when you called the functions:
// a class that incorrectly declares operator>> and
// operator<< as member functions
class String {
public:
String(const char *value);
...
istream& operator>>(istream& input);
ostream& operator<<(ostream& output);
private:
char *data;
};
String s;
s >> cin;
// legal, but contrary
// to convention
s << cout;
// ditto
That would confuse everyone. As a result, these functions shouldn't be member functions. Notice that this is a
different case from the one we discussed above. Here the goal is a natural calling syntax; earlier we were
concerned about implicit type conversions.
If you were designing these functions, you'd come up with something like this:
istream& operator>>(istream& input, String& string)
{
delete [] string.data;
read from input into some memory, and make string.data
point to it
return input;
}
ostream& operator<<(ostream& output,
const String& string)
{
return output << string.data;
}
Notice that both functions need access to the data field of the String class, a field that's private. However, you
already know that you have to make these functions non-members. You're boxed into a corner and have no
choice: non-member functions with a need for access to non-public members of a class must be made friends of
that class.
The lessons of this Item are summarized below, in which it is assumed that f is the function you're trying to
declare properly and C is the class to which it is conceptually related:
 Virtual functions must be members. If f needs to be virtual, make it a member function of C.
 operator>> and operator<< are never members. If f is operator>> or operator<<, make f a non-member
function. If, in addition, f needs access to non-public members of C, make f a friend of C.
 Only non-member functions get type conversions on their left-most argument. If f needs type
conversions on its left-most argument, make f a non-member function. If, in addition, f needs access to
non-public members of C, make f a friend of C.
 Everything else should be a member function. If none of the other cases apply, make f a member
function of C.

Comments

Popular posts from this blog

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checking a shared sec

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into /opt/course/1/context_default_no_kubectl.sh , but without the use of k

标 题: 关于Daniel Guo 律师

发信人: q123452017 (水天一色), 信区: I140 标  题: 关于Daniel Guo 律师 关键字: Daniel Guo 发信站: BBS 未名空间站 (Thu Apr 26 02:11:35 2018, 美东) 这些是lz根据亲身经历在 Immigration版上发的帖以及一些关于Daniel Guo 律师的回 帖,希望大家不要被一些马甲帖广告帖所骗,慎重考虑选择律师。 WG 和Guo两家律师对比 1. fully refund的合约上的区别 wegreened家是case不过只要第二次没有file就可以fully refund。郭家是要两次case 没过才给refund,而且只要第二次pl draft好律师就可以不退任何律师费。 2. 回信速度 wegreened家一般24小时内回信。郭律师是在可以快速回复的时候才回复很快,对于需 要时间回复或者是不愿意给出确切答复的时候就回复的比较慢。 比如:lz问过郭律师他们律所在nsc区域最近eb1a的通过率,大家也知道nsc现在杀手如 云,但是郭律师过了两天只回复说让秘书update最近的case然后去网页上查,但是上面 并没有写明tsc还是nsc。 lz还问过郭律师关于准备ps (他要求的文件)的一些问题,模版上有的东西不是很清 楚,但是他一般就是把模版上的东西再copy一遍发过来。 3. 材料区别 (推荐信) 因为我只收到郭律师写的推荐信,所以可以比下两家推荐信 wegreened家推荐信写的比较长,而且每封推荐信会用不同的语气和风格,会包含lz写 的research summary里面的某个方面 郭家四封推荐信都是一个格式,一种语气,连地址,信的称呼都是一样的,怎么看四封 推荐信都是同一个人写出来的。套路基本都是第一段目的,第二段介绍推荐人,第三段 某篇或几篇文章的abstract,最后结论 4. 前期材料准备 wegreened家要按照他们的模版准备一个十几页的research summary。 郭律师在签约之前说的是只需要准备五页左右的summary,但是在lz签完约收到推荐信 ,郭律师又发来一个很长的ps要lz自己填,而且和pl的格式基本差不多。 总结下来,申请自己上心最重要。但是如果选律师,lz更倾向于wegreened,