上一页 1 2 3 4 5 6 7 8 9 10 ··· 57 下一页

2015年7月27日

python 链接hive

摘要: http://blog.csdn.net/xubcing/article/details/8350287http://www.centoscn.com/python/2014/0921/3801.html 阅读全文

posted @ 2015-07-27 13:49 雨渐渐 阅读(200) 评论(0) 推荐(0) 编辑

2015年7月26日

shell 学习基地

摘要: http://blog.csdn.net/column/details/shell-daily-study.html?&page=2 阅读全文

posted @ 2015-07-26 07:02 雨渐渐 阅读(143) 评论(0) 推荐(0) 编辑

2015年7月24日

c++ 获取本地ip地址

摘要: 最终版本:采用指针传参数,不使用别名形式。#include #include //gethostbyname#include //ntohl#include using namespace std;int get_local_ip(int *ip) { char hostname[12... 阅读全文

posted @ 2015-07-24 16:04 雨渐渐 阅读(24492) 评论(0) 推荐(1) 编辑

c++ 如何实现,readonly

摘要: 需求:我要实现一个常量字段,只能赋值一次,赋值后不容许更改。类似于c#的readonly或者java final#include class A{public:A(int machine_id):_machine_id(machine_id) { std::cout << "构造函数" << std... 阅读全文

posted @ 2015-07-24 11:58 雨渐渐 阅读(1063) 评论(0) 推荐(0) 编辑

c++ 语法

摘要: 百度知道手把手的字符串操作啊http://jingyan.baidu.com/article/20b68a8854f919796dec6265.html 阅读全文

posted @ 2015-07-24 09:58 雨渐渐 阅读(103) 评论(0) 推荐(0) 编辑

2015年7月23日

c++ 信号量

摘要: 最近写了个c++项目,发现 ctrl + c 退出程序可以出发析构,但kill pid,则不会触发析构,导致现场数据丢失。解决方案:同时捕捉以下信号。 signal(SIGINT, &完成命名空间::sigint_handler); //之前只捕获这一个信号。 signal(SIGP... 阅读全文

posted @ 2015-07-23 17:59 雨渐渐 阅读(1122) 评论(0) 推荐(0) 编辑

vim插件介绍

摘要: 代码补全http://blog.sina.com.cn/s/blog_a6559d920101acv3.html这个牛逼。**********************************************作者:Caesar日期:2012-11-07修改历史:2013-05-18:增加vim... 阅读全文

posted @ 2015-07-23 17:39 雨渐渐 阅读(310) 评论(0) 推荐(0) 编辑

2015年7月20日

c++ memset 函数 及 坑

摘要: #include #include typedef struct ss{ int num; int dir[5][3];}tent;tent a;int main(){ memset(&a, 0, sizeof(a)); return 0;}这里有个坑,sizeof... 阅读全文

posted @ 2015-07-20 20:48 雨渐渐 阅读(666) 评论(0) 推荐(0) 编辑

2015年7月10日

stdint.h 文件 int8_t uint8_t int16_t uint16_t

摘要: http://blog.chinaunix.net/uid-26588712-id-3068151.htmlc++ 数据类型 按照posix标准,一般整型对应的*_t类型为:1字节 uint8_t2字节 uint16_t4字节 uint32_t8字节 uint64_t/* Copyright (C)... 阅读全文

posted @ 2015-07-10 15:03 雨渐渐 阅读(694) 评论(0) 推荐(0) 编辑

python 安装 easy_intall 和 pip python无root权限安装

摘要: http://www.cnblogs.com/haython/p/3970426.htmleasy_install和pip都是用来下载安装Python一个公共资源库PyPI的相关资源包的首先安装easy_install下载地址:https://pypi.python.org/pypi/ez_setu... 阅读全文

posted @ 2015-07-10 13:48 雨渐渐 阅读(3964) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 57 下一页

导航