码迷,mamicode.com
首页 >  
搜索关键字:scale out    ( 39660个结果
目录拷贝
package com.bjpowernode.java.io; import java.io.*; /* 拷贝目录 */ public class CopyAll { public static void main(String[] args) { // 拷贝源 File srcFile = ne ...
分类:其他好文   时间:2021-04-26 13:27:13    阅读次数:0
命令行传参
命令行传参 package test4; public class CommandLineParam { public static void main(String[] args) { for (int i=0; i<args.length; i++){ System.out.println("a ...
分类:其他好文   时间:2021-04-26 13:20:29    阅读次数:0
设计模式之适配器模式
适配器模式 适配器模式结构图: 示例代码: // 已有登录类实现 public class PassportService { public String regist(String userName, String password){ System.out.println("注册成功====== ...
分类:其他好文   时间:2021-04-26 13:19:58    阅读次数:0
java 计算下面级数之和 1/3+3/5+5/7+...+97/99
代码实例图:package judgment;/** * 计算下面级数之和 * 1/3+3/5+5/7+...+97/99; */public class Judgment { public static void main(String[] args) { double num=0; for (i ...
分类:编程语言   时间:2021-04-26 13:07:27    阅读次数:0
VSCode设置资源管理器字体大小
1.进入安装目录Microsoft VS Code\resources\app\out\vs\workbench 2.打开文件workbench.desktop.main.css 3.搜索.monaco-workbench .part>.content 4.修改font-size的值,默认是13px ...
分类:其他好文   时间:2021-04-24 13:48:21    阅读次数:0
vue-html2canvas实现缩略图
准备工作: npm install --save html2canvas 在需要的组件中引入 import html2canvas from "html2canvas" 需要生成的图片所在的div 要添加<div ref="imageWrapper">.... </div> 方法一:生成blob文件 ...
分类:Web程序   时间:2021-04-24 11:59:51    阅读次数:0
java基础:IO流之输入输出流、打印流、数据流
输入输出流 简介 System.in和System.oult分别代表了系统标准的输入和输出设备。 默认输入设备是:键盘,输出设备是:显示器 System.in的类型是InputStream System.out的类型是PrintStream,其是FilterOutputStream的子类 重定向:通 ...
分类:编程语言   时间:2021-04-24 11:52:30    阅读次数:0
小程序获取页面路径
var pages = getCurrentPages() //页面路径等于某某时的操作 if (pages[pages.length - 1]['route'] 'pages/business/business') { } ...
分类:微信   时间:2021-04-23 12:23:36    阅读次数:0
java中什么是线程不安全给出一个例子
下面我们再给出一个线程不安全的例子。 例:1.8.2 class BookMark_to_win { int bookNum=10; void onlySellOne() { if (bookNum > 0) { System.out.println(Thread.currentThread().g ...
分类:编程语言   时间:2021-04-23 12:23:20    阅读次数:0
LeetCode 198. House Robber
## 198. House RobberYou are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only co ...
分类:其他好文   时间:2021-04-23 12:11:50    阅读次数:0
39660条   上一页 1 ... 26 27 28 29 30 ... 3966 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!