weixin_46870449 2022-04-28 07:15 采纳率: 50%
浏览 31
已结题

请问这段代码是什么意思

public void setNextCardLocation(Point point){
PKCard card = main.getNextCard(this);
if (card != null){
if (point == null){
card.setNextCardLocation(null);
main.table.remove(card.getLocation());
card.setLocation(card.initPoint);
main.table.put(card.initPoint, card);
}
else{
point = new Point(point);
point.y += 20;
card.setNextCardLocation(point);
point.y -= 20;
main.table.remove(card.getLocation());
card.setLocation(point);
main.table.put(card.getLocation(), card);
card.initPoint = card.getLocation();
}
}
}

  • 写回答

1条回答 默认 最新

  • 吕布辕门 后端领域新星创作者 2022-04-28 07:31
    关注

    你好,望采纳!
    处理card位置的逻辑

    
    public void setNextCardLocation(Point point){
    PKCard card = main.getNextCard(this);//获取下一个pkcard
    if (card != null){//如果card存在
    if (point == null){//如果point不存在,设置默认值
    card.setNextCardLocation(null);
    main.table.remove(card.getLocation());
    card.setLocation(card.initPoint);
    main.table.put(card.initPoint, card);
    }
    else{//如果存在,x和y坐标各加20
    point = new Point(point);
    point.y += 20;
    card.setNextCardLocation(point);
    point.y -= 20;
    main.table.remove(card.getLocation());
    card.setLocation(point);
    main.table.put(card.getLocation(), card);
    card.initPoint = card.getLocation();
    }
    }
    }
    
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

问题事件

  • 系统已结题 5月11日
  • 已采纳回答 5月4日
  • 创建了问题 4月28日

悬赏问题

  • ¥15 关于#python#的问题,请各位专家解答!
  • ¥100 如何快速统计出一亿行由0和1组成的数字里面的1连续出现几次及标记后出现的次数?
  • ¥15 include 头文件引用出错问题
  • ¥15 MATLAB并行池出问题
  • ¥15 本地运行成功上传到洛谷上却WA?
  • ¥15 断网的时候检测socket连接状态
  • ¥15 Jenkins执行bat指令时报错
  • ¥15 基于FPGA的算法实现
  • ¥15 在AST抽象语法图构建CFG图时 如何构建的
  • ¥15 关于#r语言#的问题:R语言GSVA函数调用失效q生信求解:这个GSVA的包,看了一下说是函数调用过期失效了,现在需要套用新模版公式,有没有解答的呀
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部