首页 > 2016年03月06日 > 全部分享
Win10操作系统下,Java环境变量的配置
一:首先要下载并安装JDK (官方下载网址:http://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html) 二:配置环境变量及class,path的值 找到单击右键->属性,进入下图页面: 点击"高级系统设
分类:编程语言   时间:2016-03-06 19:08:21    收藏:0  评论:0  赞:0  阅读:166
[LeetCode299]Bulls and Cows
题目: You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. Each
分类:其他   时间:2016-03-06 19:08:10    收藏:0  评论:0  赞:0  阅读:201
[bug修复方案分享]ImageSpan居中问题
1.背景及原因分析: 之前我们自定义的ImageSpan,居中的算法是这样: 这个计算方法使用bottom这一参数为基准,进行居中计算。如果一个textview设置了行距,在android5及以上的操作系统,textview在单行和多行是这个bottom值是不一样的(单行文本无行距)。导致居中的显示
分类:其他   时间:2016-03-06 19:08:00    收藏:0  评论:0  赞:0  阅读:316
cocos2dx 编写shader 遇到 溢出问题
在 编程语言中,不论什么 数据类型 都有 各种 的 局限,无法 表示 现实世界中的 不论什么 情况。 比如 int ,char 会 溢出,float 会 有 溢出 以及 精度 不准确的 情况。 所以 我们 在 开发 中 须要 特别 注意 这些事。 近期 须要 在 cocos2dx(2.1.4) 引擎
分类:其他   时间:2016-03-06 19:07:40    收藏:0  评论:0  赞:0  阅读:318
内存管理原则
1.原则分析 》只要还有人在使用某个对象,那么这个对象就不会被回收 》只要你想用这个对象,就让对象的计数器+1 》当你不再使用这个对象时,就让对象的计数器+1 2. 谁创建,谁release 》如果你通过alloc 、new 或[mutable]copy 来创建一个对象,那么你必须调用 releas
分类:其他   时间:2016-03-06 19:07:31    收藏:0  评论:0  赞:0  阅读:115
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:07:01    收藏:0  评论:0  赞:0  阅读:161
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:06:40    收藏:0  评论:0  赞:0  阅读:210
软件测试之作业二
1是第一个程序; 2是第二个程序。 1a. i should reach at 0; 1b. x = null, y = 1; 1c. x = [2, 3, 5], y = 3; 1d. x = [2, 3, 5], y = 1; 2a. it just finds the first 0; 2b.
分类:其他   时间:2016-03-06 19:06:20    收藏:0  评论:0  赞:0  阅读:117
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:10    收藏:0  评论:0  赞:0  阅读:206
【甘道夫】怎样在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:06:00    收藏:0  评论:0  赞:0  阅读:184
git命令汇总
===================================================================== diff ===================================================================== git d
分类:其他   时间:2016-03-06 19:05:50    收藏:0  评论:0  赞:0  阅读:225
简单工厂模式与策略模式的优缺点以及它们的区别
一、简单工厂模式 优点: 实现了对象创建和使用的分离; 客户端无须知道所创建的具体产品类的类名,只需要知道具体产品类所对应的参数即可; 通过引入配置文件,可以在不修改任何客户端代码的情况下更换和增加新的具体产品类,在一定程度上提高了系统的灵活性。 缺点: 工厂类集中了所有产品的创建逻辑,职责过重,一
分类:其他   时间:2016-03-06 19:05:20    收藏:0  评论:0  赞:0  阅读:206
软件工程第二次
1.《构建之法》中提到了一桩怪事:A公司要挟用户必须卸载B公司的软件,然后A公司的软件才能运行......而我也遇到了一件类似的事情:如果想要安装SQL server数据库,就必须把VS2008卸载,理由是两者不兼容,我想知道这是否合法? 2.书中多次提到的API是什么东西? 3.著名的“没有银弹”
分类:其他   时间:2016-03-06 19:05:10    收藏:0  评论:0  赞:0  阅读:217
第9章 多线程
1、 /* 需求:设计4个线程对象,两个线程执行减操作,两个线程执行加操作。 类似于多个生产者和多个消费者的例子 */ import java.util.concurrent.locks.Condition; import java.util.concurrent.locks.Lock; impor
分类:编程语言   时间:2016-03-06 19:05:00    收藏:0  评论:0  赞:0  阅读:270
[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:40    收藏:0  评论:0  赞:0  阅读:246
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:20    收藏:0  评论:0  赞:0  阅读:231
vs2015 mvc项目数据迁移报错
第一次做个mvc项目玩玩,然后需要数据迁移,也没做过,就百度找怎么数据迁移, 找到的方法是: 如果数据是在类库项目里就在‘程序包管理控制台’输入:enable-migrations -ContextTypeName EFDbContext 。(EFDbContext是类名)别忘把默认项目给位类库项目
分类:Web开发   时间:2016-03-06 19:03:50    收藏:0  评论:0  赞:0  阅读:485
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:03:40    收藏:0  评论:0  赞:0  阅读:165
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:03:30    收藏:0  评论:0  赞:0  阅读:236
git变基--rebase
变基过程: 两个分支 先考虑不用变基的合并: $ git checkout master $ git merge experiment 合并后: 如果变基:(以下为变基过程) $ git checkout experiment $ git rebase master conflict resolve
分类:其他   时间:2016-03-06 19:03:20    收藏:0  评论:0  赞:0  阅读:413
1361条   上一页 1 ... 19 20 21 22 23 ... 69 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!