码迷,mamicode.com
首页 >  
搜索关键字:c++ operator 运算符重载    ( 4162个结果
python运算符重载
1、打印操作会首先尝试__str__和str内置函数,他通常返回一个用户友好显示。__repr__用于所有其他环境,用于交互式模式下提示回应以及repr函数,如果没有使用__str__,则会使用print和str。它通常返回一个编码字符串,可以用来重新创建对象,或则给开发者一个详细的显示。总而言之,...
分类:编程语言   时间:2014-07-22 23:15:37    阅读次数:687
python运算符重载2
1、重载构造函数和减法运算__init__,__sub__ #file number.py class Number: def __init__(self,data): self.data = data def __sub__(self,other): return Number(se...
分类:编程语言   时间:2014-07-22 23:15:36    阅读次数:510
UVA 10692 Huge Mod
Problem XHuge ModInput:standard inputOutput:standard outputTime Limit:1 secondThe operator for exponentiation is different from the addition, subtract...
分类:其他好文   时间:2014-05-01 09:03:35    阅读次数:540
Gold mining in South Africa
A quarry operator in the Libyan needed to expand their crushing and screening plant in order to cope with an increase in chip and sand demand from the...
分类:其他好文   时间:2014-04-30 20:26:27    阅读次数:646
读书笔记:C++ Primer系列(11)—— 表达式
定义: 表达式(expression)是由一个或多个操作数(operand)通过操作符(operator)组合而成。1. 操作符——除法(/)和求模(%)注意:除法和求模两种运算,操作数都必须是整型,包括:bool、char、short、int和long类型,以及对应的unsigned类型如果两个操...
分类:编程语言   时间:2014-04-29 23:30:13    阅读次数:504
Conditionals
1. Modulus operator (%)The modulus operator works on integers and yields the remainder when the first operand is divided by the second. In Python, the...
分类:其他好文   时间:2014-04-29 22:00:56    阅读次数:495
《Cracking the Coding Interview》——第18章:难题——题目1
2014-04-29 00:56题目:不用算数运算,完成加法。解法:那就位运算吧,用加法器的做法就可以了。代码: 1 // 18.1 add two numbers wihout using arithmetic operator. 2 #include 3 using namespace std....
分类:其他好文   时间:2014-04-29 14:58:53    阅读次数:383
set容器的实现
set容器是以红黑树容器为基础实现的,在其基础上稍加改变接口即可 #ifndef MY_SET_H_INCLUDED #define MY_SET_H_INCLUDED #include"my_rb_tree.h" namespace juine { template struct identity { const T& operator()(cons...
分类:其他好文   时间:2014-04-29 13:16:20    阅读次数:376
数据库学习笔记(一)
1.在ORACLE里默认只有三个系统用户,ORACLE是通过用户登入。 SYS用户:超级管理员,权限最高,它的角色是DBA。默认密码是change_on_install。具有创建数据库的权限 SYSTEM用户:系统管理员,权限很高,它的角色是DBA operator,默认密码manager。不具有....
分类:数据库   时间:2014-04-29 11:38:45    阅读次数:516
走进C++程序世界-----operator new delete 重载
在C++ 的世界里,new 和delete 是关键字,而在C的世界里相对应的malloc和free是函数,关键C++的new和delete分析,详见前面的章节,这里就不在过多的介绍了。链接。 下面来研究下关于new 和delete的重载。  1、对比使用重载和未使用重载  未使用“/*File : operator_new.cpp *Auth : sjin *Date : 2014-04...
分类:编程语言   时间:2014-04-28 10:43:41    阅读次数:406
4162条   上一页 1 ... 414 415 416 417 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!