码迷,mamicode.com
首页 >  
搜索关键字:comare version number    ( 48018个结果
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
null 和 undefined 的区别
探索javascript中null和undefined的深渊译05 January 2014当讨论JavaScript中的原始数据类型时,大多数人都知道的基本知识,从String,Number到Boolean。这些原始类型相当简单,行为符合常识。但是,本文将更多聚焦独特的原始数据类型Null和Und...
分类:其他好文   时间:2014-07-22 23:10:32    阅读次数:507
Maximum Depth of Binary Tree
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:其他好文   时间:2014-07-22 23:07:13    阅读次数:379
Bootstrap 布局
bootstrap提供的布局主要有两种,固定布局和流动布局。Bootstrap 固定布局用法 ... 实例:Example of Fixed Layout with Bootstrap version 2.0 from w3cschool.ccHomeAboutContactw3csch...
分类:其他好文   时间:2014-07-22 23:06:55    阅读次数:812
Oracle 存储过程了解
简要记录存储过程语法与Java程序的调用方式 一 存储过程 首先,我们建立一个简单的表进行存储过程的测试createtable xuesheng(id integer, xing_ming varchar2(25), yu_wen number, shu_xue number);insert...
分类:数据库   时间:2014-07-22 23:06:13    阅读次数:393
mac ide
xcodesublime textxampp + phpstormsequel proeclipseparallels desktopversions + githubizipchrome欧陆词典迅雷
分类:其他好文   时间:2014-05-01 15:42:17    阅读次数:345
Ubuntu FAQ
1,官方的入门教程http://ubuntu-manual.org/2,安装JRE 解压缩tar -xzvf jre-version-linux-i586.tar.gz 配置环境变量JAVA_HOME="/usr/lib/java/jre_version"CLASSPATH="$JAVA_HOM.....
分类:其他好文   时间:2014-05-01 14:42:40    阅读次数:385
Single Number II ——位操作
题意: 给定两个32位的整数 N 和 M,以及表示比特位置的 i 与 j 。编写一个方法,将 M 插入 N,使得 M 从 N 的第 j 位开始,到第 i 位结束。假定从 j 位到 i 位足以容纳M。输入:N = 10000101000,M = 10011,i = 2, j = 6输出:N = 10....
分类:其他好文   时间:2014-05-01 01:49:44    阅读次数:380
导出EXCEL数据时防止数值变科学计数的办法
网上有很多说法,最简单直接正确的做法是判断一下是否为数值以及长度,然后给单元格加上以下CSS即可:mso-generic-font-family:auto; mso-font-charset:134; mso-number-format:"\@"; mso-background-source:aut...
分类:其他好文   时间:2014-04-30 23:20:46    阅读次数:471
Writing your first Django
Quick install guide1.1 Install Python, it works with Python2.6, 2.7, 3.2, 3.3. All these version of Python include a lightweight database SQLite, so y...
分类:其他好文   时间:2014-04-30 23:14:34    阅读次数:566
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!