首页 > 新文章
  • C++ Primer 读书笔记 - 第十三章 is a project mainly written in , based on the .1. Initialization和Assignment不一样。其中Initialization包括direct-initialization (如A a(...))和copy-initialization (如 A a = b;)     注意A a = b为copy-initialization,     而A a; A b; a...

  • 天堂Lineage(單機版)從零開始架設教學 is a project mainly written in , based on the .此篇文章 內容大部份連結 已失效, 我已另外寫一篇更快速安裝的文章。 前言:               網路遊戲天堂在數年前,被日本人分析封包的方式。模擬出Lineage server端的行為。               不像天堂II,及RO是由內部洩漏出Server端程式。也由於天堂Server的熱門以至於私服人人到處架。...

  • IPhone App开发实战手册学习笔记(5)之IOS常用机制 is a project mainly written in , based on the .1 前言 在IOS开发中,相信大家一定听说过委托,数据源,target,action等等,今天我们就来简单的学习一下这些内容。 2 详述 2.1 委托和数据源 大家是否曾经有不知道如何去执行一项任务的时候?或许是修理一台洗碗机或者补一双袜子。你可以学者自己做,或者找人帮你完成你不懂的地方,这就是委托。 委托(delegation)的设...

  • C++ 卸载程序 is a project mainly written in , based on the .目的:用C++写一个自己的卸载程序来完成程序的卸载工作,同时运行后要删除卸载程序本身,并删除卸载程序所在的文件夹。 注:在程序退出的时候写上 自己的卸载代码。   // FileName: Uninstall.h #pragma onceclass CUninstall { private:// Exe文件名 CStrin...

  • Xt800、DEFY自带号码归属地更新包,更新至2013.4【数据总数278360条】 is a project mainly written in , based on the .总结了http://bbs.gfan.com/forum.php?mod=viewthread&tid=5603346&extra=page%3D1&page=1和http://bbs.mfunz.com/thread-706813-1-1.html,经测试在我的XT800上可用,可以把其他的第三方来电软件通通删掉了。 特点:能够显示...

  • Linux文件分割与合并:splitcat(转载) is a project mainly written in , based on the .  转自:http://os.51cto.com/art/201104/255359.htm   Linux下文件分割可以通过split命令来实现,而用cat进行文件合并。而分割可以指定按行数分割和安大小分割两种模式。Linux下文件合并可以通过cat命令来实现,非常简单。  在Linux下用split进行文件分割:  模式一:指定分...

  • 如何破解压缩文件密码-省时省力的方法 is a project mainly written in , based on the .  压缩文件破解工具下载地址:http://www.cnblogs.com/spring_wang/archive/2013/06/14/3135163.html 应该很多人都碰到过RAR加密、解密的问题吧。简单给大家介绍下如何用工具来破解RAR密码!我们所利用的工具,就是“ARPR”、相信有些人肯定知道。 原文地址:http://j...

  • Qt Installer Framework实战 is a project mainly written in , based on the .Qt Installer Framework是Qt发布的安装程序支持框架,只需要简单的配置就可以生成安装文件,同时可以通过javascript脚本来定制安装过程。 目录结构 config packages data meta 配置文件 config/config.xml packages/[product]/meta/packag...

  • 亮剑.NET的系列文章之.NET实现三层架构(三) is a project mainly written in , based on the .    最近一直在学习三层架构,前些天同样也写了一篇同样的博客,今天主要是通过一个登录的实例给大家讲解每部分的作用和相应代码的实现。     先将实现三层架构的UML图给大家,帮助大家更好的理解三层。               1. UI作用 (1) 向用户展示特定业务数据 (2) 采集用户的输入信息和操作 Publ...

  • 读写配置文件 is a project mainly written in , based on the .写配置文件 public void WriteConfigurationFile(string path){using (System.IO.StreamWriter streamWriter = new System.IO.StreamWriter(path, true)){if (_vdtSource == null || _v...

  • 微软BI 之SSAS 系列 - 在 SQL Server 2012 下查看 SSAS 分析服务的模型以及几个模型的简单介绍... is a project mainly written in , based on the .在SSDT中部署一个 SSAS 项目到本地服务器上出现错误。   You cannot deploy the model because the localhost deployment server is not running in multidimensional mode。 错误原因是因为我在本地安装 SQL Server 2...

  • [置顶] 单键模式的C++描述 is a project mainly written in , based on the .设计模式-单键(Signelton):其实单键的设计模式说来很简单,说的直白一点就是程序运行过程中保证只有一个实例在运行而已。在软件系统中,经常有这样一些特殊的类,必须保证它们在系统中只存在一个实例,才能确保它们的逻辑正确性、以及良好的效率。实现方法是将类的构造函数设置为私有,然后显示的提供一个方法来返回此对像的实例。   class...

  • Qt4在linux下的安装 is a project mainly written in , based on the .1、下载SDK ftp://ftp.informatik.hu-berlin.de/pub/Mirrors/ftp.troll.no/QT/qtsdk/qt-sdk-linux-x86-opensource-2010.05.1.bin 2、修改文件权限 想要安装SDK,需要拥有对其读写和执行的权限。可以通过【右键】->【属性】-...

  • Android Handler介绍 is a project mainly written in , based on the .本文转自:http://www.cnblogs.com/keyindex/articles/1822463.html 前言 学习android一段时间了,为了进一步了解android的应用是如何设计开发的,决定详细研究几个开源的android应用。从一些开源应用中吸收点东西,一边进行量的积累,一边探索android的学习研究方向。这里...

  • 为什么必须是final的呢? is a project mainly written in , based on the .一个谜团 如果你用过类似guava这种“伪函数式编程”风格的library的话,那下面这种风格的代码对你来说应该不陌生: 1 2 3 4 5 6 7 8 9 public void tryUsingGuava() { final int expectedLength = 4; Iterables.filter(...

  • POJ 2586 Y2K Accounting Bug(贪心) is a project mainly written in , based on the .题目连接:http://poj.org/problem?id=2586 题意:某公司要统计全年盈利状况,对于每一个月来说,如果盈利则盈利S,如果亏空则亏空D。公司每五个月进行一次统计,全年共统计8次(1-5、2-6、3-7、4-8、5-9、6-10、7-11、8-12),已知这8次统计的结果全部是亏空(盈利-亏空<0)。题目给出S和D...

  • Android基础知识之Manifest文件的组织结构 is a project mainly written in , based on the .原文:http://android.eoe.cn/topic/android_sdk 是AndroidManifest.xml文件中的根标签,她必须包含一个标签和指定的xmlns:android、 package两个属性。 属性: xmlns:android定义了Android的命名空间。这个属性一般可以设置为:"http://sch...

  • 学习ExtJS4 常用控件 is a project mainly written in , based on the .ExtJS组件配置方式介绍   1.使用逗号分隔参数列表配置组件      首先来看一个简单的逗号分隔参数列表的例子。这个例子非常简单,它用来显示信息提示框。   2.使用Json对象配置组件     接下来看一个使用Json对象配置组件的例子,很多地方习惯性称之为配置对象。