- 博客(27)
- 收藏
- 关注
原创 c++ new(随手记录的...请忽略这个...
默认使用 heap allocator(new real time时候很危险new operator 是默认的 operator new是重载的 new operator调用operator new分配空间后 调用构造函数使用new 的使用delete 使用operator new的使用operator delete#include <iostream>clas...
2018-06-18 01:24:25 287
原创 hadoop wordcount 示例
本示例假设已经设置好基本配置好hadoop 如何配置hadoop不是本文的重点 如果在终端中输入hadoop没有报错就可以继续往下看1 查看classpathhadoop classpath2 设定环境变量classpath在终端输入vim ~/.bashrc 在文件中添加export classpath=你的classpath 重启终端3 创建WordcCount.j...
2018-06-14 11:45:29 298 1
原创 makefile .PHONY
PHONY.PHONY :cleanclean: rm -rf a.outmakfile经常会看到.PHONY的命令。.PHONY 的作用是什么1首先要知道makefile中除了一些常量的声明外,剩下的指令基本都是以下面的形式开始targetfile:sourcefile command1 targetfile sourcefile co...
2018-06-13 18:17:20 765
原创 linux common command
最好的方法-使用man命令查看手册不太好的方法 -看下面的一些常用的指令contenttar 命令 打包命令df 命令 查看磁盘使用情况命令增删查改常用指令mv/cp 命令 移动(重命名)/复制1.tar -[mode][option]-mode-c:建立一个压缩文件 create-x:解开一个压缩文件 -t:查看 tar类型里面的文件 -...
2018-02-17 21:30:11 255
原创 haskell 笔记3
1 .pattern matchingpattern matching exampleluckly :: (Integral a)=>a->Stringluckly 7 = "you are luckly"luckly x = "nonono"how to match a listmatch_list :: [a] -> Stringmatch_list []= "
2018-02-04 14:54:01 209
原创 git 学习(持续更新)
目录1 坑-更新*(17/10/26)本地直接删除文件后,git到远程仓库,为什么不会同步删除对应文件 *(18/02/27)如何解决冲突合并的问题 * ( 18/03/02 )changes not stage for commit(存在submodule的情况)2 学习笔记*(17/10/26)常用命令 *(18/02/11)关于远程分支正文1. 坑...
2017-10-26 19:06:48 298
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人