加载中
同时承担多个项目,如何高效平衡解决问题

公司人手不够,新来的同事不能hold住开发需求,有时候会有新的项目加入。 只能同时分身多个项目,但是质量和进度很显然收到影响,不管是出了bug还是进度延期,老板很多时候可是不理会的,在这...

2017/08/26 15:19
649
框架升级特别要注意外围系统接口变更

接口的兼容性是基本原则 目前看到在自身的框架里调用外部的接口时,需要改变引入的二方库,引入新的包,原本以为这样就可以了,但是发现更多的引入其他的第三方jar包。这是要特别注意,引入新...

2017/08/26 15:13
149
持续集成在项目中的使用

目前项目使用Jekins作为项目编译和发布平台,一直在思考是不是需要添加秩序集成的case。 因为目前很多提交测试环境测试人员自己运行测试build任务时会发现一些失败,但是在本地却OK。 经过调...

2017/08/26 15:07
40
如何快速的让新人熟悉项目开发

负责的项目从纵向和横向上都在不断扩展,子项目变多,每个项目也在不断的加深。 这是会招收新的同事进入team,但是由于项目的专业性和复杂性,新人往往难以快速上手。 项目开发过程中,项目需...

2017/08/26 14:44
298
如何做好一个项目

互联网开发中,很多时候没有流程可言,都是需求来了,迅速开发,稍微测试就发布。 再加上需求不明确,朝三暮四,开发对业务了解不深入,产品和需求南辕北辙。 涉及到多个团队开发时,边界定义...

2017/08/25 22:59
45
json对象在返回时需要commons-fileupload

今天通过jjquery getJSON从spring mvc ation获得json内容,老是获得不了, 其他什么东西都没有什么问题。 后来直接在浏览器里查看该action,结果发现还需要将commons-fileupload.jar添加进来才...

2015/02/11 16:11
87
linux查看与开启sshd服务

1。首先通过物理终端进入到linux上,手工检查ssh发现没运行 /etc/init.d/sshd status sshd is stopped 手工启动服务,发现报告权限错误。 /etc/init.d/sshd start Starting sshd:/var/empty/...

2014/10/06 18:07
892
旋转左字符串

public static void reverseString(char[] cs, int from, int to){     while(from < to){       char c = cs[from];       cs[from++] = cs[--to];       cs[to] = c;     }   }...

2014/09/25 18:48
65
delete all line in VIM

Problem To delete all the lines of a file that is open in Vim. Solution Type gg to move the cursor to the first line of the file, if it is not already there. Type dG to delete a...

2014/09/23 11:07
153
基数排序 和桶排序

import java.util.ArrayList; import java.util.LinkedList; import java.util.Queue; public class RadixSort{   public static void radixSort(int arr[], int maxDigits){     int exp = 1...

2014/09/09 18:04
118
查看那个进程占用了8080端口-windows

1、“开始”——“运行”——“cmd”——“Enter”——在命令提示符中输入“netstat -ano|findstr "8080"”命令——打到占用该端口进行的pid号 2、右击任务栏——打开任务管理器——选择“进...

2014/09/08 09:41
1K
oracle调用返回游标的存储过程

oracle调用返回游标的存储过程 In SQL Developer SET SERVEROUTPUT ON declare cur_out_arg CURSORTYPE; idvalue number; begin dbms_output.put_line('------------------------'); SPNAME(...

2014/09/04 09:08
676
求一个矩阵中最大的二维矩阵(元素和最大)

求一个矩阵中最大的二维矩阵(元素和最大).如 : 1 2 0 3 4 2 3 4 5 1 1 1 5 3 0 中最大的是 : 4 5 5 3 要求:(1)写出算法;(2)分析时间复杂度;(3)用C写出关键代码 public class FindMax2Dimensi...

2014/09/02 21:50
399
通过交换a,b中的元素,使[序列a元素的和]与[序列b元素的和]之间的差最小(两数组的差最小)。

import java.util.ArrayList; import java.util.List; public class LeastSumDiff {   public static void main(String args[]) {     int[] a1 = { 100, 99, 98, 1, 2, 3 };     // int[] a1 = ...

2014/09/01 14:26
421
Java将数字化成二进制字符串

copy from Integer.java public static String toBinaryString(int i) {     return toUnsignedString(i, 1);   }   /**    * Convert the integer to an unsigned number.    */   private static...

2014/09/01 11:09
595
查找最大的数字子串

// Interview100.cpp : Defines the entry point for the console application. // #include "stdafx.h" int maxSubStr(char* str){ int len = 0;   char *pstart = NULL;   int max = ...

2014/09/01 10:32
112
从n个数中找到和为m的数

import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.Stack; /* * Find the nums which sum is M */ public class FindMInN {   public sta...

2014/09/01 08:34
553

没有更多内容

加载失败,请刷新页面

返回顶部
顶部