上一页 1 2 3 4 5 6 7 8 ··· 26 下一页
摘要: 二、将本地项目上传到自己的Git仓库中1. 快速步骤分解打开我们的项目,此时项目中是没有 .git 文件的在你的项目文件夹里面【鼠标右击】弹出菜单在【鼠标右击】弹出的菜单中,点击【Git Bash Here】在命令窗口中输入:git init在 Gitee 中 我们刚刚新建的仓库里,去复制仓库的地址 阅读全文
posted @ 2023-07-19 17:54 Shapley 阅读(318) 评论(0) 推荐(0)
摘要: 简单示例: obj.autocomplete({ source: function (request, response) { doAjax("fee/GetPrice", "{'wldm':'" + request.term + "'}", function (data) { response($ 阅读全文
posted @ 2023-03-02 18:05 Shapley 阅读(214) 评论(0) 推荐(0)
摘要: 先上测试代码: public class Test{ public static void main(String[] args) { Integer l1 = new Integer(1); Integer l2 = new Integer(1); System.out.println(l1==l 阅读全文
posted @ 2022-11-24 08:46 Shapley 阅读(368) 评论(0) 推荐(0)
摘要: 1.按Java理论,父类与子类的初始化顺序为: 1.初始化父类静态变量 2.初始化父类的静态代码块 3.初始化子类的静态变量 4.初始化子类的静态代码块 5.父类的非静态变量 6.父类的非静态代码块 7.父类的构造函数 8.子类的非静态变量 9.子类的非静态代码块 10.子类的构造函数 验证代码: 阅读全文
posted @ 2022-11-20 13:27 Shapley 阅读(527) 评论(0) 推荐(0)
摘要: 首先,示例来自Bruce Eckel的《On Java》: // housekeeping/ExplicitStatic.java // (c)2021 MindView LLC: see Copyright.txt // We make no guarantees that this code i 阅读全文
posted @ 2022-11-08 08:48 Shapley 阅读(76) 评论(0) 推荐(0)
摘要: 先用javac编译,带参数-d javac -d . ****.java 然后,在当前目录下(不要到****子目录),运行java即可。 java ***.***** 如: java com.FuctionDemo2 package com; import java.util.function.Fu 阅读全文
posted @ 2022-11-03 09:21 Shapley 阅读(502) 评论(0) 推荐(0)
摘要: 在zookeeper正常启动后,运行hadoop,并启动flink发现报错: 2022-10-26 13:24:49,145 INFO org.apache.flink.yarn.YarnClusterDescriptor [] - Deployment took more than 60 seco 阅读全文
posted @ 2022-10-26 14:36 Shapley 阅读(3624) 评论(0) 推荐(0)
摘要: 前言 微信小程序发布时,细节很多,记录下来,以期备用。 步骤 一.先在微信开发工具进行小程序开发或者先申请微信小程序均可以。 二.申请小程序时需要使用邮箱及密码注册,注册完成后,需要在在注册使用的邮箱内进行激活,激活后小程序管理端才能使用。 三.配置小程序服务器: 1.注册小程序域名时,域名内无需要 阅读全文
posted @ 2022-10-10 17:53 Shapley 阅读(2508) 评论(0) 推荐(0)
摘要: 示例: wxml页面: <picker name="picker_machine11" class="cybm_pic_1" range="{{categoryList}}" value="{{'categoryid'}}" range-key='name' bindchange="bindChan 阅读全文
posted @ 2022-09-20 09:43 Shapley 阅读(1224) 评论(0) 推荐(0)
摘要: public String GetMonthFirstFriday(int year, int month) throws Exception { SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); Calendar cal_1 阅读全文
posted @ 2022-08-02 10:01 Shapley 阅读(1096) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 26 下一页