【友元函数】 之前只知道友元类型 friend class。原来C++中还有友元函数 friend class。 1)C++中引入友元函数,是为在该类中提供一个对外(除了他自己意外)访问的窗口; 2)这个友元函数他不属于该类的成员函数,他是定义在类外的普通函数,只是在类中声明该函数可以直接访问类中的 ...
分类:
其他好文 时间:
2019-01-29 11:56:07
阅读次数:
177
Watchmen CodeForces - 650A Watchmen are in a danger and Doctor Manhattan together with his friend Daniel Dreiberg should warn them as soon as possible ...
分类:
其他好文 时间:
2019-01-27 21:45:44
阅读次数:
138
JsonWebToken 概述 如果各位不了解 JWT,不要紧张,它并不可怕。 JSON Web Token(JWT)是一个非常轻巧的规范。这个规范允许我们使用JWT在用户和服务器之间传递安全可靠的信息。 让我们来假想一下一个场景。在A用户关注了B用户的时候,系统发邮件给B用户,并且附有一个链接“点 ...
分类:
其他好文 时间:
2019-01-24 22:55:29
阅读次数:
188
题目大意是求一些数字的各位和,看一下有多少不同的,并且按升序输出,水题~ #include <iostream> #include <cstring> #include <string> #include <sstream> #include <string> #include <cstdio> # ...
分类:
其他好文 时间:
2019-01-22 21:43:46
阅读次数:
209
When FJ's friends visit him on the farm, he likes to show them around. His farm comprises N (1 <= N <= 1000) fields numbered 1..N, the first of which ...
分类:
其他好文 时间:
2019-01-20 18:56:22
阅读次数:
148
tk.Tk()是调用tkinter模块来创建窗口 在实现页面之后,可以使用Button、Entry、Label等组件来实现功能 具体使用案例: Button(self.page, text='群组', width=9, font=("Arial, 12"), command=self.friend_ ...
分类:
其他好文 时间:
2019-01-13 10:22:25
阅读次数:
247
一、友元函数 1、友元函数允许在类外访问该类中的任何成员,使用关键字friend说明。通过友元一个普通函数或类的成员函数可以访问封装于另一个类中的数据。从一定程度上讲,友元是对数据隐藏和封装的破坏,但是为了数据共享和提高程序的效率与可读性,小的破坏是必要的。 友元函数不属于该类的成员函数,它是定义在 ...
分类:
编程语言 时间:
2019-01-12 17:51:55
阅读次数:
213
Some people will make friend requests. The list of their ages is given and ages[i] is the age of the ith person. Person A will NOT friend request pers ...
分类:
移动开发 时间:
2019-01-11 00:05:29
阅读次数:
164
Problem "bzoj1137" 题意概要:给定一个凸多边形坐标。点按顺时针编号 $1$ 到 $n$。任意两点之间都有一条长度为欧氏距离的边相连。边相交处可以自由穿行。有 $m$ 条边不能走,但是可以经过这条边与其他边的交点。问从点 $1$ 到 $n$ 的最短路(即给定完全图,删去$m$边,求最 ...
分类:
其他好文 时间:
2019-01-09 11:12:33
阅读次数:
143
In this lesson you will learn to talk about what happened. 在本课中,您将学习如何谈论发生的事情。 课上内容(Lesson) # four “W” one “H” Where 在哪里 What 干什么 Who 谁 Why 为什么 How 怎么 ...
分类:
其他好文 时间:
2019-01-08 12:22:16
阅读次数:
144