zoukankan      html  css  js  c++  java
  • 团队项目4--第二篇随笔

    1、站立式会议

    进度

    成员 昨日完成任务 遇到的困难
    罗欢 坦克建模出现了一些小bug
    石晓邗 变量交互时出现偏差,无法正常建模
    梁业昌 制作坦克模型时,无法对模型较为细致的建模,导致出现了边缘磨损
    温德华 在代码交接方面有困难
    余廷锋 变量的创建与队友不一致

     2、燃尽图

    3、代码签入记录

    4、恰当的项目程序

    主要代码

    public class Shot implements Runnable{
        int x;
        int y;
        int direct;
        int speed = 6;
        boolean isLive = true;
        public Shot(int x,int y,int direct){
            this.x=x;
            this.y=y;
            this.direct = direct;
        }
    
    
    
    
    public class Tank {
        int x;
        int y;
        int direct=0;
        int speed=4;
            int color=0;//判断是否死亡
        boolean isLive =true;
        public int getColor() {
            return color;
        }
    public void setColor(int color) {
            this.color = color;
        }
    public int getSpeed() {
            return speed;
        }
    public void setSpeed(int speed) {
            this.speed = speed;
        }
    public int getDirect() {
            return direct;
        }
    public void setDirect(int direct) {
            this.direct = direct;
        }
        public Tank(int x,int y){
            this.x = x;
            this.y = y;
        }
        public int getX() {
            return x;
        }
        public void setX(int x) {
            this.x = x;
        }
        public int getY() {
            return y;
        }
        public void setY(int y) {
            this.y = y;
        }
    }

    5、总结

    成员 总结
    罗欢 在一天的合作中,我们代码的交接做的不是很好。
    石晓邗 基本上完成了第一天的任务
    梁业昌 坦克模型的优化有点难
    温德华 总体上还行
    余廷锋 代码的交接做得不好
  • 相关阅读:
    添加常驻Notification
    Java 数组操作
    一百本英文原著之旅 ( 15 finished )
    SQLServer2005中查询语句的执行顺序
    高效程序员的45个习惯
    博客园经典闪存语录
    for xml path('') 引发的数据不完整
    ajax向前台输出二维数组 并解析
    重视知识的本质
    C语言排序
  • 原文地址:https://www.cnblogs.com/jmrlu/p/12985067.html
Copyright © 2011-2022 走看看