Chinaunix首页 | 论坛 | 博客
  • 博客访问: 309802
  • 博文数量: 214
  • 博客积分: 4258
  • 博客等级: 上校
  • 技术积分: 2021
  • 用 户 组: 普通用户
  • 注册时间: 2010-12-02 09:16
个人简介

http://blog.csdn.net/ly21st http://ly21st.blog.chinaunix.net

文章分类

全部博文(214)

文章存档

2018年(16)

2015年(1)

2014年(2)

2012年(22)

2011年(173)

发布时间:2011-12-07 12:45:36

python的扩展 源文件 #include "Python.h" static char py_gcd_doc[]="Computes the gcd of two integers";static PyObject*py_gcd(PyObject *self,PyObject *args) {       int x,y,r;        if (!PyArg_ParseTuple(args,".........【阅读全文】

阅读(560) | 评论(0) | 转发(0)

发布时间:2011-12-06 14:22:57

from datetime import *import timeprint date.maxprint date.minprint date.today()print date.fromtimestamp(time.time()) 结果:9999-12-310001-01-012011-12-062011-12-06 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.........【阅读全文】

阅读(303) | 评论(0) | 转发(0)

发布时间:2011-12-06 10:23:15

在Linux中创建静态库和动态库范例 (hello.c)发表于 2010年05月31日 11:57 分类: 编程coding 统计: 0评/49阅 0人收藏此文章, 收藏此文章(?)我们通常把一些公用函数制作成函数库,供其它程序使用。函数库分为静态库和动态库两种。静态库在程序编译时会被连接到目标代码中,程序运行时将不再需要该静态库.........【阅读全文】

阅读(374) | 评论(0) | 转发(0)

发布时间:2011-12-03 18:53:01

ORA-00054 resource busy and acquire with NOWAIT specified Cause 错误解决方法 1.查询被锁对象:select object_name,machine,s.sid,s.serial# from v$locked_object l,dba_objects o ,v$session swhere l.object_id = o.object_id and l.session_id=s.sid; 2.将查找的被.........【阅读全文】

阅读(330) | 评论(0) | 转发(0)

发布时间:2011-12-02 16:10:57

#ifndef QUERY_H #define QUERY_H #include "TextQuery.h" using namespace std; class Query_base{ friend class Query; protected: typedef TextQuerytypedef  unsigned char      boolean;     /* Boolean value type. */typedef  unsigned long .........【阅读全文】

阅读(393) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册