码迷,mamicode.com
首页 >  
搜索关键字:man    ( 12069个结果
OpenERP对象字段定义的详解
OpenERP对象支持的字段类型有,基础类型:char, text, boolean, integer, float, date, time, datetime, binary;复杂类型:selection, function, related;关系类型:one2one, one2many, man...
分类:其他好文   时间:2014-07-10 11:13:07    阅读次数:339
Problem Valid Palindrome
Problem Description:Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a...
分类:其他好文   时间:2014-07-07 16:03:32    阅读次数:168
分支-10. 计算个人所得税(10)
#include#includeusing namespace std;int main(){ float x; cin>>x; cout<<setiosflags(ios::fixed)<<setprecision(2); if(x<=1600) cout<<0.00<<endl; else i....
分类:其他好文   时间:2014-07-02 18:23:21    阅读次数:177
分支-09. 分段计算居民水费(10)
#include#includeusing namespace std;int main(){ float x; cin>>x; cout<<setiosflags(ios::fixed)<<setprecision(2); if(x<=15) cout<<4*x/3<<endl; else c.....
分类:其他好文   时间:2014-07-02 18:10:27    阅读次数:200
debian下安装erlang文档
sudo apt-get install erlang-manpages然后就可以用如下命令查看模块的帮助文件了:erl -man lists
分类:其他好文   时间:2014-07-02 10:04:25    阅读次数:310
Javascript-自定义对象转换成JSon后如何再转换回自定义对象
man是自定义的对象,使用var tim = JSON.stringify(man); var newman=JSON.parse(tim)后newman的类型是“object”并不是一个Man,怎么才能变回一个Man呢? function Man() { this._type = "man"; this.name=""; this.run = function () {...
分类:编程语言   时间:2014-07-02 09:51:34    阅读次数:187
【LeetCode】Valid Palindrome
题目 Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example, "A man, a plan, a canal: Panama" is a palindrome. "race a car" i...
分类:其他好文   时间:2014-07-02 09:49:04    阅读次数:271
javascript的prototype经典使用场景
prototype的经典使用场景就是为对象增加属性和方法,如给自定义的Man对象增加个姓名属性和语言方法: function man() { this.age = "22"; } var tom = new man(); man.prototype.name = "tom"; man.prototype.say = function () { ...
分类:编程语言   时间:2014-07-02 08:50:51    阅读次数:261
文件操作
Look Info : ls -a 全部文件 -h 将大小转换为为GB,KB -l 列出属性和权限 -R 子目录内容也列出来 --full-time 显示完整时间 ... 我常用的就是这几个了,其他它请自行 man 吧Copy: cp cp 源文件1,源文件1... 目标文件 -i...
分类:其他好文   时间:2014-07-01 19:33:22    阅读次数:206
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!