private void createCheck() { List<Check> list = getEmptyChecks(); if (!list.isEmpty() && isadd) { Random random = new Random(); int index = random.nextInt(list.size()); Check check = list.get(index); // 2, 4出现概率3:1 int randomValue = random.nextInt(4); check.value = ( randomValue % 3 == 0 || randomValue % 3 == 1) ? 2 : 4;//只有[0,4)中的2才能生成4 isadd = false;//isadd被设置为false,表示不允许生成4。因为只有在初始值为2的方块合并成4的时候,才会允许生成4,否则只能生成2 } } // 获取空白方格 private List<Check> getEmptyChecks() { List<Check> checkList = new ArrayList<>(); for (int i = 0; i < 4; i++) { for (int j = 0; j < 4; j++) { if (checks[i][j].value == 0) { checkList.add(checks[i][j]); } } } return checkList; }
时间: 2024-02-10 20:33:02 浏览: 100
这段代码是游戏中生成新方块的函数createCheck(),其中包括以下几个步骤:
1. 调用getEmptyChecks()函数获取当前空白的方块列表;
2. 如果空白方块列表非空,且标志位isadd为true,表示可以继续生成新方块;
3. 使用Java中的Random类生成一个随机数,用于在空白方块列表中随机选择一个位置生成新的方块;
4. 再次使用Random类生成一个随机数,用于确定新方块的值,其中2和4的出现概率为3:1;
5. 将新方块的值赋给随机选择的空白方块,并将标志位isadd设置为false,表示不允许生成值为4的方块,只有在两个值为2的方块合并成4时才允许生成值为4的方块。
除此之外,还有一个函数getEmptyChecks(),用于获取当前空白的方块列表,它遍历整个二维数组,将值为0的方块加入到一个List中并返回。
相关问题
private void createCheck() { List<Check> list = getEmptyChecks(); if (!list.isEmpty() && isadd) { Random random = new Random(); int index = random.nextInt(list.size()); Check check = list.get(index); // 2, 4出现概率3:1 int randomValue = random.nextInt(4); check.value = ( randomValue % 3 == 0 || randomValue % 3 == 1) ? 2 : 4;//只有[0,4)中的2才能生成4 isadd = false;
这段代码的作用是在游戏棋盘上随机生成一个数字,并将其添加到一个空白的方块中。具体来说,它执行以下步骤:
1. 调用 getEmptyChecks() 方法获取所有空白方块的列表。
2. 判断列表是否为空,以及是否需要生成新的数字(isadd 变量),如果列表不为空且需要生成新的数字,则继续执行下一步操作。
3. 使用 java.util.Random 类生成一个随机数,以确定在哪个空白的方块上生成数字。
4. 再次使用随机数,以 3:1 的概率生成数字 2 或 4。具体来说,生成一个 0 到 3 之间的随机数,如果结果是 0 或 1,则生成数字 2,否则生成数字 4。
5. 将生成的数字添加到选中的空白方块中,并将 isadd 变量设置为 false,以表示已经生成了新的数字。
随机生成数字是 2048 游戏中的一个重要机制,它保证了游戏的可玩性和随机性。这段代码实现了随机生成数字的逻辑,并将其添加到游戏棋盘上的空白方块中。
dao包有ProductDao,UserDao,service有ProductService,UserService,servlet有BaseServlet,filter有BaseFilter(除了load.jsp请求和load.action请求,其他请求资源访问必须先登录),页面中包括一个搜索栏和一个表格。搜索栏包括商品Id(精确查询)和商品名称(模糊查询)两个输入框,以及一个搜索商品按钮。表格中包括全选/全不选的复选框、商品id、商品类别、类别名称和操作(删除),以及最下方的批量删除按钮。 在数据库中,有一个product表,包括pid、pname、pimage、shop_price四个字段,以及一个category表,包括cid和cname两个字段。在页面中,勾选复选框后,下方会显示商品Id、商品图片和商品价格。完善代码
好的,以下是一个基于您提供的要求和框架的代码示例。请注意,这只是一个示例,具体实现细节可能与您的要求有所不同,需要您根据实际情况进行调整。
ProductDao.java
```java
public class ProductDao {
// 获取数据库连接
private Connection getConnection() {
// TODO: 实现获取数据库连接的方法
}
// 根据 id 查询商品
public Product getProductById(int pid) {
Connection conn = getConnection();
String sql = "SELECT * FROM product WHERE pid = ?";
PreparedStatement pstmt = conn.prepareStatement(sql);
pstmt.setInt(1, pid);
ResultSet rs = pstmt.executeQuery();
if (rs.next()) {
Product product = new Product();
product.setPid(rs.getInt("pid"));
product.setPname(rs.getString("pname"));
product.setPimage(rs.getString("pimage"));
product.setShopPrice(rs.getDouble("shop_price"));
return product;
} else {
return null;
}
}
// 根据名称模糊查询商品
public List<Product> getProductsByName(String name) {
Connection conn = getConnection();
String sql = "SELECT * FROM product WHERE pname LIKE ?";
PreparedStatement pstmt = conn.prepareStatement(sql);
pstmt.setString(1, "%" + name + "%");
ResultSet rs = pstmt.executeQuery();
List<Product> products = new ArrayList<>();
while (rs.next()) {
Product product = new Product();
product.setPid(rs.getInt("pid"));
product.setPname(rs.getString("pname"));
product.setPimage(rs.getString("pimage"));
product.setShopPrice(rs.getDouble("shop_price"));
products.add(product);
}
return products;
}
// 根据 id 删除商品
public boolean deleteProductById(int pid) {
Connection conn = getConnection();
String sql = "DELETE FROM product WHERE pid = ?";
PreparedStatement pstmt = conn.prepareStatement(sql);
pstmt.setInt(1, pid);
int result = pstmt.executeUpdate();
return result > 0;
}
// 批量删除商品
public boolean deleteProducts(List<Integer> pids) {
Connection conn = getConnection();
String sql = "DELETE FROM product WHERE pid IN (";
for (int i = 0; i < pids.size(); i++) {
sql += "?";
if (i != pids.size() - 1) {
sql += ",";
}
}
sql += ")";
PreparedStatement pstmt = conn.prepareStatement(sql);
for (int i = 0; i < pids.size(); i++) {
pstmt.setInt(i + 1, pids.get(i));
}
int result = pstmt.executeUpdate();
return result > 0;
}
}
```
UserService.java
```java
public class UserService {
private UserDao userDao = new UserDao();
// 用户登录
public boolean login(String username, String password) {
User user = userDao.getUserByUsername(username);
if (user != null && user.getPassword().equals(password)) {
return true;
} else {
return false;
}
}
}
```
BaseServlet.java
```java
public abstract class BaseServlet extends HttpServlet {
// 获取 ProductService 和 UserService 实例
protected ProductService productService = new ProductService();
protected UserService userService = new UserService();
// 处理 GET 请求
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO: 实现 GET 请求处理逻辑
}
// 处理 POST 请求
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO: 实现 POST 请求处理逻辑
}
}
```
BaseFilter.java
```java
public class BaseFilter implements Filter {
// 过滤器初始化
public void init(FilterConfig filterConfig) throws ServletException {
// TODO: 实现过滤器初始化逻辑
}
// 过滤器销毁
public void destroy() {
// TODO: 实现过滤器销毁逻辑
}
// 过滤请求
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
HttpServletRequest req = (HttpServletRequest) request;
HttpServletResponse resp = (HttpServletResponse) response;
HttpSession session = req.getSession();
if (session.getAttribute("user") == null) {
resp.sendRedirect(req.getContextPath() + "/login.jsp");
} else {
chain.doFilter(request, response);
}
}
}
```
ProductServlet.java
```java
public class ProductServlet extends BaseServlet {
private ProductDao productDao = new ProductDao();
// 处理 GET 请求
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String action = request.getParameter("action");
if ("search".equals(action)) {
String pidStr = request.getParameter("pid");
String pname = request.getParameter("pname");
if (pidStr != null && !pidStr.isEmpty()) {
int pid = Integer.parseInt(pidStr);
Product product = productDao.getProductById(pid);
if (product != null) {
request.setAttribute("products", Collections.singletonList(product));
} else {
request.setAttribute("message", "未找到对应商品");
}
} else if (pname != null && !pname.isEmpty()) {
List<Product> products = productDao.getProductsByName(pname);
if (products.isEmpty()) {
request.setAttribute("message", "未找到对应商品");
} else {
request.setAttribute("products", products);
}
} else {
request.setAttribute("message", "请输入查询条件");
}
request.getRequestDispatcher("/product_list.jsp").forward(request, response);
} else if ("delete".equals(action)) {
String[] pids = request.getParameterValues("pids[]");
if (pids != null && pids.length > 0) {
List<Integer> pidList = new ArrayList<>();
for (String pid : pids) {
pidList.add(Integer.parseInt(pid));
}
boolean result = productDao.deleteProducts(pidList);
if (result) {
request.setAttribute("message", "删除成功");
} else {
request.setAttribute("message", "删除失败");
}
} else {
request.setAttribute("message", "请选择要删除的商品");
}
request.getRequestDispatcher("/product_list.jsp").forward(request, response);
} else {
request.setAttribute("message", "非法请求");
request.getRequestDispatcher("/product_list.jsp").forward(request, response);
}
}
}
```
product_list.jsp
```html
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>商品列表</title>
<link rel="stylesheet" href="${pageContext.request.contextPath}/css/style.css">
<script src="${pageContext.request.contextPath}/js/jquery-3.6.0.min.js"></script>
<script>
$(function () {
// 全选/全不选
$("#check_all").click(function () {
$(".check_item").prop("checked", $(this).prop("checked"));
});
// 批量删除
$("#btn_delete").click(function () {
var pids = [];
$(".check_item:checked").each(function () {
pids.push($(this).val());
});
if (pids.length == 0) {
alert("请选择要删除的商品");
return;
}
if (confirm("确定要删除选中的商品吗?")) {
$.ajax({
url: "${pageContext.request.contextPath}/product?action=delete",
type: "POST",
data: {pids: pids},
success: function (data) {
alert(data.message);
window.location.reload();
},
error: function () {
alert("请求失败,请稍后再试");
}
});
}
});
});
</script>
</head>
<body>
<div class="container">
<h1>商品列表</h1>
<div class="search">
<form action="${pageContext.request.contextPath}/product" method="GET">
<label>商品ID:</label>
<input type="text" name="pid">
<label>商品名称:</label>
<input type="text" name="pname">
<button type="submit">搜索商品</button>
</form>
</div>
<div class="message">
<c:if test="${not empty message}">
<span>${message}</span>
</c:if>
</div>
<table>
<thead>
<tr>
<th><input type="checkbox" id="check_all"></th>
<th>商品ID</th>
<th>商品名称</th>
<th>商品图片</th>
<th>商品价格</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<c:if test="${not empty products}">
<c:forEach items="${products}" var="product">
<tr>
<td><input type="checkbox" class="check_item" value="${product.pid}"></td>
<td>${product.pid}</td>
<td>${product.pname}</td>
<td><img src="${product.pimage}"></td>
<td>${product.shopPrice}</td>
<td><a href="#">删除</a></td>
</tr>
</c:forEach>
</c:if>
</tbody>
</table>
<div class="actions">
<button id="btn_delete">批量删除</button>
</div>
</div>
</body>
</html>
```
以上是一个基于您提供的要求和框架的代码示例。其中,ProductDao 负责与数据库进行交互,UserService 负责处理用户登录相关的业务逻辑,BaseServlet 和 BaseFilter 分别为 servlet 和 filter 的基类,ProductServlet 处理与商品相关的请求,product_list.jsp 为展示商品列表的页面。在 JavaScript 中,使用 jQuery 实现了全选/全不选和批量删除的功能。
阅读全文