上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 40 下一页
该文被密码保护。 阅读全文
posted @ 2016-07-04 16:28 calochCN 阅读(9) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-07-04 13:23 calochCN 阅读(12) 评论(0) 推荐(0) 编辑
摘要: // ConsoleApplication1.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include class MyClass { public: MyClass(int* a); MyClass(); ~MyClass(); int GetId() { return 5; } private: }; MyClass::... 阅读全文
posted @ 2016-07-02 19:13 calochCN 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 析构函数在调用默认的析构函数和用户自己覆写的析构函数的时候有点意识模糊呢。写段代码总结下 [cpp] view plain copy #include <iostream> using namespace std; class Box { private: double length; public 阅读全文
posted @ 2016-07-02 18:55 calochCN 阅读(604) 评论(0) 推荐(0) 编辑
摘要: c++中关于const的用法有很多,const既可以修饰变量,也可以函数,不同的环境下,是有不同的含义。今天来讲讲const加在函数前和函数后面的区别。比如: 01 #include<iostream> 02 03 using namespace std; 04 05 // Ahthor: 过往记忆 阅读全文
posted @ 2016-07-02 16:18 calochCN 阅读(2814) 评论(0) 推荐(0) 编辑
摘要: Master's conclusion: 1. fix a color pattern 2. fix the frames the UI will use 3. fix the subject that you want to present 4. fix the content that you 阅读全文
posted @ 2016-06-30 13:56 calochCN 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 安装git : yum install git 查询包: rpm -ql git 打开文件夹目录: nautilus 目录路径 阅读全文
posted @ 2016-06-30 13:52 calochCN 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 工龄有多重要?你恐怕未必知道,别以为没啥大不了,事实上,工龄会从各方面影响你的生活 。为了自己的权益,关于工龄的这些事儿,你必须要了解! 1、影响带薪年休假 (1)职工本单位累计工作满1年不满10年的年休假5天 (2)满10年不满20年的年休假10天 (3)满20年的年休假15天 注意: 职工在年休 阅读全文
posted @ 2016-06-28 10:56 calochCN 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 一.安装 yum install subversion 二.配置 本系统采用为每个项目单独建一版本库的策略。配置文件,密码文件,访问控制文件等都放在版本库的conf目录下。 所以每次开始一个新项目都必须新建一个版本库,并重新配置各配置文件。还有很重要的一条,要求各组员重新配置客户端,包括服务器版本库 阅读全文
posted @ 2016-06-28 09:50 calochCN 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 1. Subversion简介 Subversion(简称SVN)是一款功能强大的开源版本控制工具,支持Linux和Windows平台。 SVN可以有两个访问方式,一种是独立服务器直接访问,即利用svnserve命令启动服务,通过svn://yourdomain.com/project进行访问和操作 阅读全文
posted @ 2016-06-28 09:45 calochCN 阅读(156) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 40 下一页