一:主要代码网址: https://github.com/534933002/-/commit/68be07f7329d84f412b1f416d5ce89f0123b6773 二:辅导员辅助系统用户操作手册: 日期:2017年12月01日 版本:1.0.10 目 录 1 概述4 1.1 简介 4 ...
分类:
其他好文 时间:
2017-12-17 20:46:38
阅读次数:
184
运算符重载的意思就是给原有的运算符赋值新的功能,来满足我们更多的需求。 运算符重载可以分为两种形式:一、一元运算符重载 (-)负号的重载: 友元函数的重载: friend coordinate operator-(const coordinate &coor) 成员函数的重载: coordinate ...
分类:
其他好文 时间:
2017-12-17 00:59:14
阅读次数:
130
访问修饰符可以修饰属性和方法。 访问修饰符总结: ...
分类:
编程语言 时间:
2017-12-16 13:14:52
阅读次数:
191
No man is rich enough to buy back his own past. 没有人富有到可以赎回自己的过去。 Those rich are not willing to buy back their past, even they are able to. Wealth can ...
分类:
其他好文 时间:
2017-12-15 22:34:15
阅读次数:
145
1.个人中心的页面布局(html文件及相应的样式文件) 2.定义视图函数def usercenter(user_id): 3.向前端页面传递参数 4.页面显示相应数据 发布的全部问答 发布的全部评论 个人信息 5.各个页面链接到个人中心 ...
分类:
编程语言 时间:
2017-12-13 19:41:10
阅读次数:
159
extends与Java一样,也是使用extends关键字,使用继承可以有效复用代码 extends 与Java一样,也是使用extends关键字,使用继承可以有效复用代码 class Person { private var name = "leo" def getName = name } cl ...
分类:
其他好文 时间:
2017-12-13 00:13:34
阅读次数:
256
工厂模式 优点:使用同一个接口创建很多独享,避免大量的重复代码。 缺点:没有解决对象识别问题,怎样知道一个对象的类型。 构造函数模式 构造函数就是为了解决工厂模式的缺点,将它的实例标识为一种特定类型。 缺点:每个方法都要在每个实例撒很重新创建一遍。 原型模式 每个函数都有一个prototype的原型 ...
分类:
编程语言 时间:
2017-12-04 22:20:29
阅读次数:
125
You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 to 3 ston ...
分类:
其他好文 时间:
2017-12-02 22:13:33
阅读次数:
149
原文地址:面向对象设计模式原则详解 http://blog.csdn.net/hguisu/article/details/7571617 程序员必备的七大面向对象设计原则(一) http://www.cnblogs.com/hnrainll/archive/2012/06/03/2532551.h ...
分类:
其他好文 时间:
2017-12-02 15:05:28
阅读次数:
179
After you had helped George and Alex to move in the dorm, they went to help their friend Fedor play a new computer game «Call of Soldiers 3». The game ...
分类:
其他好文 时间:
2017-12-02 12:52:25
阅读次数:
164