上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 27 下一页
摘要: 类图 源码 ShoppingRequest.java package com.chain; public class ShoppingRequest { private String shoppingReason; private double billMoney; public ShoppingR 阅读全文
posted @ 2021-12-14 16:15 往心。 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 类图 源码 (1) Customer.java package proxytest; public class Customer implements Person{ public void findLove(){ System.out.println("高富帅"); System.out.prin 阅读全文
posted @ 2021-12-14 16:13 往心。 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 类图 源码 package weight; /** * 坐标类:外部状态类 * @author fly * */ class Coordinates { private int x; private int y; public Coordinates(int x,int y) { // TODO A 阅读全文
posted @ 2021-12-14 16:12 往心。 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 桥接模式 类图 源码 package bridge; public interface Vehicle { public void drive(); } Car.java package bridge; public class Car implements Vehicle { @Override 阅读全文
posted @ 2021-12-14 16:02 往心。 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 建造者模式 类图 源码 package com.bulid; public class Computer { private String cpu;//必须 private String ram;//必须 private int usbCount;//可选 private String keyboa 阅读全文
posted @ 2021-12-14 15:56 往心。 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 类图 源码 package skinMan; public class Client { public static void main(String[] agrs) throws Exception { HumanFactory maleHumanFactory = new MaleFactory 阅读全文
posted @ 2021-12-14 15:54 往心。 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 类图 源码 package jiami; import javax.crypto.Cipher; import javax.crypto.KeyGenerator; import javax.crypto.SecretKey; public class DES implements Method { 阅读全文
posted @ 2021-12-14 15:49 往心。 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 新建解决方案 清除解决方案 重新生成解决方案 发布应用程序 设置配置文件 重命名配置文件 发布后生成的文件 IIS安装 安装完成后,输入http://localhost/出现 打开IIS 添加自己的网站 选择“Visual Studio 2017”—>选择“Visual Studio Tools”— 阅读全文
posted @ 2021-12-14 09:40 往心。 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 在我们开发的工程中,有时候会报[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax 阅读全文
posted @ 2021-12-14 09:30 往心。 阅读(802) 评论(0) 推荐(0) 编辑
摘要: 使用out.println()输出: <%@ page contentType="text/html;charset=UTF-8"%> <html> <head><title>乘法口诀</title></head> <body> 使用out.println()打印乘法口诀:<br/> <% int 阅读全文
posted @ 2021-12-14 09:19 往心。 阅读(2688) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 27 下一页