http://blog.csdn.net/ly21st http://ly21st.blog.chinaunix.net
发布时间:2011-12-18 15:28:46
pair<T1, T2> p1 ; pair<T1, T2> p1(v1, v2)make_pair(v1 , v2)map<T1 , T2>::value_type( v1 , v2)......【阅读全文】
发布时间:2011-12-18 14:29:47
值转换为字符串的两种机制可以通过以下两个函数来使用这两种机制:一是通过str函数,它会把值转换为合理形式的字符串,以便用户可以理解; 而repr会创建一个字符串,它以合法的python表达式的形式来表示值。下面是一些例子:>>> print repr("hello")'hello'>>> print repr(1000L)1000L>>> print str("hello")hel.........【阅读全文】
发布时间:2011-12-18 10:56:39
#include <iostream>using namespace std;struct _A; struct _B; typedef void (*dealloc)(struct _A *a); typedef struct _A { int i; dealloc b;}A;void free_used_b(struct _A *a){ delete a;}int main(){ cout<<"hello,world"<<endl; for (size_t i=0; i.........【阅读全文】
发布时间:2011-12-17 13:39:37
#include <iostream>#include <map>#include <sstream>#include <cctype>#include <algorithm>using namespace std;#define Py_INCREF(obj) obj->ob_refcnt++#define Py_DECREF(obj) obj->ob_refcnt--; #define Py_XINCREF(obj) {if obj==NULL ; \ else Py_INCREF(.........【阅读全文】