码迷,mamicode.com
首页 >  
搜索关键字:sub    ( 10221个结果
python 邮件通知程序
#!/usr/bin/envpython #-*-coding:utf-8-*- importsys reload(sys) fromemail.MIMETextimportMIMEText importsmtplib sys.setdefaultencoding(‘utf-8‘) importsocket,fcntl,struct defsend_mail(to_list,sub,content): mail_host="smtp.163.com" mail_user="XXXXX@163.com" ..
分类:编程语言   时间:2015-04-29 07:27:18    阅读次数:159
C++ 超类 子类
Submysub=super;//父类对象赋值给子类对象,不能反过来。downcasting。Super&mysuper=sub;//父类对象引用子类对象,即向上类型强制转换upcasting如果要进行向下类型强制转换,应该利用dynamic_cast,它使用该类型对象的内置知识来防止无意义的类型转换。Sub*mysub=dynamic_..
分类:编程语言   时间:2015-04-28 19:03:36    阅读次数:185
IOS 获取基地址
#import #import #import void (*old_sub_ACF0)(void);void new_sub_ACF0(void){ // old_sub_ACF0(); NSLog(@"iOSRE: anti-anti-debugging");}%ct...
分类:移动开发   时间:2015-04-28 17:41:12    阅读次数:243
E: Sub-process /usr/bin/dpkg returned an error code (1)
libapache2-mod-php5 php5-cli php5-curl php5-gd php5-mysql tex-commonE: Sub-process /usr/bin/dpkg returned an error code (1)报上述错误解决办法:(来自http://www.li....
分类:其他好文   时间:2015-04-28 13:25:43    阅读次数:115
Aerospike-Architecture系列之大数据类型
Large Data Types(大数据类型) 大数据类型的bin可以存储大量的对象集合。对象的类型可以是Integer/String/Map/List。Aerospike的单个记录可以包含许多这样的bin,这样的bin允许在单独的记录中包含大量的数据,其限制基于存储能力,记录没有最大值限制。 Aerospike LDT使用的存储类型,我们叫做子记录( sub-records)。子记录与Aer...
分类:其他好文   时间:2015-04-28 11:42:12    阅读次数:211
SDUT 1351 Max Sum
Max Sum Time Limit: 2000ms   Memory limit: 32768K  有疑问?点这里^_^ 题目描述 Given a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, ...
分类:其他好文   时间:2015-04-27 21:51:49    阅读次数:169
HDU 1081 to the max 基础DP 好题
To The MaxProblem DescriptionGiven a two-dimensional array of positive and negative integers, a sub-rectangle is any contiguous sub-...
分类:其他好文   时间:2015-04-27 21:25:15    阅读次数:100
动态内存分配 学习笔记
#include<stdio.h> #include<stdlib.h> char*substr(constchar*s,intn1,intn2) { char*p=(char*)malloc(n2-n1+2); inti,j=0; for(i=n1;i<=n2;i++,j++) p[j]=s[i]; p[j]=‘\0‘; returnp; } voidmain(void) { chars[80],*sub; intn1,n2; printf("请输入..
分类:其他好文   时间:2015-04-26 01:47:06    阅读次数:146
HDU 1003 Max Sum
Problem DescriptionGiven a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, given (6,-1,5,4,-7)...
分类:其他好文   时间:2015-04-24 12:29:58    阅读次数:166
sharepoint 版本信息查看
#检查版本:# PowerShell script to display SharePoint products from the registry.Param( # decide on whether all the sub-components belonging to the product....
分类:其他好文   时间:2015-04-24 12:19:03    阅读次数:144
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!