码迷,mamicode.com
首页 > 2016年03月06日 > 全部分享
内存管理原则
1.原则分析 》只要还有人在使用某个对象,那么这个对象就不会被回收 》只要你想用这个对象,就让对象的计数器+1 》当你不再使用这个对象时,就让对象的计数器+1 2. 谁创建,谁release 》如果你通过alloc 、new 或[mutable]copy 来创建一个对象,那么你必须调用 releas
分类:其他好文   时间:2016-03-06 19:10:08    阅读次数:133
Software Testing hw1
I still remember the error which I made in my java project last year. I spent a whole night solving it and finally I found it and corrected it. My jav
分类:其他好文   时间:2016-03-06 19:10:04    阅读次数:120
SPRING IN ACTION 第4版笔记-第八章Advanced Spring MVC-003-Pizza例子的基本流程
一、 1. 2.pizza-flow.xml 1 <?xml version="1.0" encoding="UTF-8"?> 2 <flow xmlns="http://www.springframework.org/schema/webflow" xmlns:xsi="http://www.w3
分类:编程语言   时间:2016-03-06 19:07:33    阅读次数:284
nyoj43--24 Point game(dfs)
24 Point game 时间限制:3000 ms | 内存限制:65535 KB 难度:5 描述 There is a game which is called 24 Point game. In this game , you will be given some numbers. Your
分类:其他好文   时间:2016-03-06 19:08:11    阅读次数:131
The experience that I fix an error during coding
Last semester I was asked to design a website required by my web teacher. Since I had no experience and basic knowledge in web designing, I had no cho
分类:其他好文   时间:2016-03-06 19:06:15    阅读次数:140
【甘道夫】怎样在cdh5.2上执行mahout的itemcf on hadoop
环境: hadoop-2.5.0-cdh5.2.0 mahout-0.9-cdh5.2.0 步骤: 基本思路是,将mahout下的全部jar包都引入hadoop的classpath就可以,所以改动了$HADOOP_HOME/etc/hadoop/hadoop-env.sh,加入例如以下代码将maho
分类:其他好文   时间:2016-03-06 19:08:06    阅读次数:128
git命令汇总
===================================================================== diff ===================================================================== git d
分类:其他好文   时间:2016-03-06 19:09:04    阅读次数:136
「C语言」「算法」多种方法求一个数的位数及逆序数
「C语言」「算法」多种方法求一个数的位数及逆序数
分类:编程语言   时间:2016-03-06 19:06:49    阅读次数:171
简单工厂模式与策略模式的优缺点以及它们的区别
一、简单工厂模式 优点: 实现了对象创建和使用的分离; 客户端无须知道所创建的具体产品类的类名,只需要知道具体产品类所对应的参数即可; 通过引入配置文件,可以在不修改任何客户端代码的情况下更换和增加新的具体产品类,在一定程度上提高了系统的灵活性。 缺点: 工厂类集中了所有产品的创建逻辑,职责过重,一
分类:其他好文   时间:2016-03-06 19:05:39    阅读次数:142
软件工程第二次
1.《构建之法》中提到了一桩怪事:A公司要挟用户必须卸载B公司的软件,然后A公司的软件才能运行......而我也遇到了一件类似的事情:如果想要安装SQL server数据库,就必须把VS2008卸载,理由是两者不兼容,我想知道这是否合法? 2.书中多次提到的API是什么东西? 3.著名的“没有银弹”
分类:其他好文   时间:2016-03-06 19:07:05    阅读次数:125
第9章 多线程
1、 /* 需求:设计4个线程对象,两个线程执行减操作,两个线程执行加操作。 类似于多个生产者和多个消费者的例子 */ import java.util.concurrent.locks.Condition; import java.util.concurrent.locks.Lock; impor
分类:编程语言   时间:2016-03-06 19:07:38    阅读次数:212
[Unit Testing] AngularJS Unit Testing - Karma
Install Karam: npm install -g karma npm install -g karma-cli Init Karam: karma init First test: 1. Add test file to the karma.conf.js: // list of file
分类:Web程序   时间:2016-03-06 19:04:51    阅读次数:559
blade and soul pvp guide
PvP PvP in Blade and Soul is categorized into two types, a personal PvP called Arena and a large-scale PvP called World PvP.Player vs Player in Blade
分类:其他好文   时间:2016-03-06 19:04:21    阅读次数:155
代码托管平台(Git)
1,可以说GitHub的出现完全颠覆了以往大家对代码托管网站的认识。GitHub不但是一个代码托管网站,更是一个程序员的SNS社区。GitHub真正 迷人的是它的创新能力与Geek精神,这些都是无法模仿的。在GitHub出现后,国内也出现了大量的代码托管网站,国内外有的代码托管网站也都开始引入 Gi
分类:其他好文   时间:2016-03-06 19:05:34    阅读次数:161
centos 下tomcat 自动启动
1、修改start.sh文件 vim /usr/local/tomcat8/bin/startup.sh 在文件头增加以下内容: #!/bin/sh # chkconfig: 2345 97 00 # description:tomcat auto start #processname: tomca
分类:其他好文   时间:2016-03-06 19:06:23    阅读次数:112
10.0.4_对应的相关Windows服务
对应 VMware Workstation 版本为:“10.0.4 build-2249910” 我的os是Win7 x64。 Windows服务: 1、 服务名:VMware NAT Service 显示名称:VMware NAT Service 可执行文件路径:C:\Windows\system
分类:Windows程序   时间:2016-03-06 19:05:24    阅读次数:189
基于tiny4412的Linux内核移植 -- 设备树的展开
分类:系统相关   时间:2016-03-06 19:04:55    阅读次数:543
1029条   上一页 1 ... 16 17 18 19 20 21 22 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!