??xml version="1.0" encoding="utf-8" standalone="yes"?>久久精品色播,日韩av免费在线观看,欧美日韩大陆在线http://www.aygfsteel.com/ymd/逝去的月光,黎明的红?/description>zh-cnSat, 05 Jul 2025 14:50:02 GMTSat, 05 Jul 2025 14:50:02 GMT60- 微Y目l理培训http://www.aygfsteel.com/ymd/archive/2007/12/09/MSUP.html试试Sun, 09 Dec 2007 14:03:00 GMThttp://www.aygfsteel.com/ymd/archive/2007/12/09/MSUP.htmlhttp://www.aygfsteel.com/ymd/comments/166519.htmlhttp://www.aygfsteel.com/ymd/archive/2007/12/09/MSUP.html#Feedback1http://www.aygfsteel.com/ymd/comments/commentRss/166519.htmlhttp://www.aygfsteel.com/ymd/services/trackbacks/166519.html
讲课的是微Y的一个项目经理,个h觉得q个人是个经验丰富,~程能力很强Qƈ且能理Q有野心但是也比较谦虚。课讲的非常不错Q这两天学到了很多的东西Q其中一个就是微软运用P代模型开发项目,q且q用着里程的概念Q运用的可以说是如火U情Q而且所有的理论都是建立在他们实际的目l历Q这点很隑־Q因为如果什么理论如果没有个例子的话Q可能只有讲师一个h能够理解Q而听评人没有一个感性的认识。在q代模型开发中带着敏捷开发,从这点看Z对P代模型开发和里程概忉|个质的认识,而不是很虚的那种认识Q是由项目经验ȝ出来的,包括回答公司一些h的问题,都是q用他的l验说的Q可以说Q我们这ơ培训将改变我们公司的现在开发模式,会D一ơ很大的调整Q管理层也会思考一些问题?br />
毕竟我们做的东西也比较大Q而且在这个中间出C不少的问题,如果说以前就用今天用的这一套可能可以规避很多的风险Qƈ且现在所发生的很多问题根本就不会出现Q其实在我们的开发中已经有个l验比较丰富的h早就提醒q其中要做的一点,是CodeReviewQ可是由于项目进度赶的急,没有走正常的路子D现在很多问题出现Q本觉得公司最大的问题是Unitest,而且CodeReview,而且没有一套机制进行保证,q有是开发h员对需求整理没有参与,q且也不是很了解需求,沟通的。这Ll果D一个很严重的后果,是做了q么久,是刚好让开发h员知道我们要做的东西是个什么,如果目开始就有开?br />
人员参与的话Q应该不会这P而且在中途出Ch员流动,Ҏ人没有很好的培训q个产品Q而是很茅草的q了一下?br />
q有是现在的bug数目Q一直不能控Ӟ其中有开发h员的问题Q也有项目经理的问题Q其中CodeReview的可怜,代码质量Ҏ得不C证,代码质量都得不到保证Q品如何才能保证,最重要的是没有一个体制进行约束?br />
怿公司已经认识到这些,可以看到公司已经在进行一些调_而且是迅速的Q相信也是及时的Q也让我们看C一点希望?br />
q次培训真的是物所|如果形容q次培训的媄响,我相信将是一个质的、里E碑的,对公总后的体制攚wQ将L军_性的作用Q相信管理层已经意识到这一炏V?br />

]]> - 自定义堆栈类http://www.aygfsteel.com/ymd/articles/stack.html试试Fri, 19 Oct 2007 10:46:00 GMThttp://www.aygfsteel.com/ymd/articles/stack.htmlhttp://www.aygfsteel.com/ymd/comments/154311.htmlhttp://www.aygfsteel.com/ymd/articles/stack.html#Feedback0http://www.aygfsteel.com/ymd/comments/commentRss/154311.htmlhttp://www.aygfsteel.com/ymd/services/trackbacks/154311.html
1
public class MyLinkStack
{
2
/** *//**
3
* 内部c,用以存储用户调用<code>MyLinkStack#push(Object)</code><br>
4
* 传进来的对象?br />
5
*/
6
private static class Node
{
7
/** *//**
8
* 用户需要堆栈的对象
9
*/
10
Object item;
11
/** *//**
12
* 存储前一个Node对象
13
*/
14
Node next;
15
/** *//**
16
* 默认的构造函?br />
17
*
18
*/
19
Node()
{
20
this.item = null;
21
this.next = null;
22
}
23
/** *//**
24
* 创徏一个新的Node对象Q用于存储用户push的数?br />
25
*
26
* @param item
27
* @param next
28
*/
29
Node(Object item, Node next)
{
30
this.item = item;
31
this.next = next;
32
}
33
/** *//**
34
* 是否已经C堆栈底部
35
*
36
* @return
37
*/
38
boolean end()
{
39
return this.item == null && this.next == null;
40
}
41
}
42
/** *//**/
43
private Node top = new Node();
44
/**
45
* 向堆栈中存入数据
46
*
47
* @param item
48
*/
49
public void push(Object item)
{
50
top = new Node(item, top);
51
}
52
/** *//**
53
* 取出push中的数据
54
*
55
* @return
56
*/
57
public Object pop()
{
58
Object result = top.item;
59
if (!top.end())
{
60
top = top.next;
61
}
62
return result;
63
}
64
}
以上的堆栈类是用的链式结构?br />

]]> - 怎样qoIType中的IMethodhttp://www.aygfsteel.com/ymd/articles/130944.html试试Tue, 17 Jul 2007 15:51:00 GMThttp://www.aygfsteel.com/ymd/articles/130944.htmlhttp://www.aygfsteel.com/ymd/comments/130944.htmlhttp://www.aygfsteel.com/ymd/articles/130944.html#Feedback0http://www.aygfsteel.com/ymd/comments/commentRss/130944.htmlhttp://www.aygfsteel.com/ymd/services/trackbacks/130944.html
eclipse中的ITypeQ它分别有两个实现的基类Q分别是BinaryType和SourceTypeQ顾名思义Q分别是处理二进制的cR源代码形式的类。IType可以理解成ؓ一个类对象Q它装了对cȝ一些处理?br>今天的重点不是说ITypeQ而是说过滤IMethodQ下面是一D对qoIMethod的代码片断,明白人应该一看就明白了,呵呵Q看h比较的弱智,不过Q没有东西写的时候就写点q样的,当是加忆吧?br>它是通过Flagsq行判断的,取得public的Method代码如下Q其余的以此cL?br>
1
public static List<IMethod> getPublicMethods(IType claz) throws JavaModelException
{
2
List<IMethod> list = new ArrayList<IMethod>();
3
IMethod[] methods = claz.getMethods();
4
for(IMethod temp : methods)
{
5
if(Flags.isPublic(temp.getFlags()))
{
6
list.add(temp);
7
}
8
}
9
return list;
10
}
java中的Class也可以得到MethodQ也可以qo得到我们自己惌的MethodQ取得public的Method代码如下Q其余的以此cL?br>
1
public static List<Method> getPublicMethods(Class claz)
{
2
List<Method> list = new ArrayList<Method>();
3
Method[] methods = claz.getMethods();
4
for(Method temp : methods)
{
5
if(Modifier.isPublic(temp.getModifiers()))
{
6
list.add(temp);
7
}
8
}
9
return list;
10
}
其实两段代码非常怼Q好了,今天也就写到q里Q睡觉去了?

]]>- 怎样通过字符串取得Classhttp://www.aygfsteel.com/ymd/articles/130677.html试试Mon, 16 Jul 2007 13:51:00 GMThttp://www.aygfsteel.com/ymd/articles/130677.htmlhttp://www.aygfsteel.com/ymd/comments/130677.htmlhttp://www.aygfsteel.com/ymd/articles/130677.html#Feedback0http://www.aygfsteel.com/ymd/comments/commentRss/130677.htmlhttp://www.aygfsteel.com/ymd/services/trackbacks/130677.html今天׃要用到通过一个字W串取得ClassQ开始通过Class的forName(String)Ҏ可以得到Q但是当我输入的是一个数l的时候,好像׃行了Q通过forName(String)取得的却是空的,按照原来的思\好像是可以的Q因为数l也是一个对象,也就是说可以getClassQؓ什么却不能得到Q比较伤脑子Q后来通过一个不是办法的办法解决了,呵呵Q仅供参考?br>
1
2
//
.
3
4
public static Class findClass(String r_className,ClassLoader r_loader)
{
5
String t_className = new String(r_className);
6
int arryIndex = t_className.lastIndexOf("[]");
7
boolean isarryClass = false;
8
if(arryIndex > 0)
{
9
t_className = t_className.substring(0,arryIndex);
10
isarryClass = true;
11
}
12
Class claz = null;
13
try
{
14
claz = Class.forName(t_className,true,r_loader);
15
} catch (ClassNotFoundException e)
{}
16
if(isarryClass && claz != null)
{
17
claz = Array.newInstance(claz, 1).getClass();
18
}
19
return claz;
20
}
21
//
.
现在q没有发C能处理的情况?

]]> - l兴的最后一?/title>http://www.aygfsteel.com/ymd/archive/2007/07/05/128444.html试试Thu, 05 Jul 2007 14:12:00 GMThttp://www.aygfsteel.com/ymd/archive/2007/07/05/128444.htmlhttp://www.aygfsteel.com/ymd/comments/128444.htmlhttp://www.aygfsteel.com/ymd/archive/2007/07/05/128444.html#Feedback0http://www.aygfsteel.com/ymd/comments/commentRss/128444.htmlhttp://www.aygfsteel.com/ymd/services/trackbacks/128444.html
今天首先多吃了一点东西,呵呵Q吃了比较多的菜Q不q后来就喝v了酒Q每个h都很有激情,都是敬来敬去的,呵呵Q感觉自p是闷在吃饭的原地QL不好Q就攑ּ了手脚,呵呵Q首先敬了师傅一杯,呵呵Q然后就是王,然后是我们一赯来的三个弟兄Q然后就是看着他们那敬过来了Q两座搞的不可开交,呵呵Q感觉我也应该上了,׃跟他们干上了Qؓ了干完他们全部,我连喝了三杯Q呵呵,q是比较强。然后就是内战,每个人敬q来l过去,然后是老焦要我陪着_因ؓ他喝的比较多Q一直陪着他到了老焦面前Q才出去C一下,哎,不写了,有点手Y了,睡觉M
.......

]]> - 到绍兴的W二?/title>http://www.aygfsteel.com/ymd/articles/123690.html试试Tue, 12 Jun 2007 11:14:00 GMThttp://www.aygfsteel.com/ymd/articles/123690.htmlhttp://www.aygfsteel.com/ymd/comments/123690.htmlhttp://www.aygfsteel.com/ymd/articles/123690.html#Feedback0http://www.aygfsteel.com/ymd/comments/commentRss/123690.htmlhttp://www.aygfsteel.com/ymd/services/trackbacks/123690.html
昨天晚上吃了晚饭以后q出L了步Q可今天却没有,不过刚刚一个h划船Q他们看着Q好像也会划一点了Q希望在回去之前能学会划船,那样没有遗憾了?br>
昨天Cl兴Q感觉还很好Q火车站的hq没有上L人多Q所有的事物看上L那么的清晰、简z,虽然没有接触q什么绍兴hQ到我们住的地方才接触了一些绍兴的人,每天都能听到狗叫、鸡叫、鸟叫,真是有点象走q大自然的感觉,感觉是那么的清晰和明亮。据说这里是以前大官下榻的驿站,怪不得叫“蓬莱水驿”沿着沛_都是挂着q样的旗帜,感觉是这里的一道风景线Q尤其是要进入这里要么做船,要么q一个桥Q非常的有感觉,当然Q我是做的船Q呵呵,比较的懒Q不q找了个借口Q学划船Q?br>
今天分配了一些Q务,是最q两周的Q还是比较艰巨,希望能搞定?br>
未完待箋。。。。。。。。?

]]>
վ֩ģ壺
|
ξ|
|
|
ɽ|
|
÷ӿ|
ˮ|
֦|
Ƽ|
ɽ|
|
ֹ|
|
Ͽ|
|
ʡ|
|
ƽ|
פ|
|
Ĭ|
պ|
|
ҵ|
|
ٹ|
|
|
Ѱ|
|
|
|
|
|
|
Ӽ|
|
|
|
|