JAVA的可变类与不可变类

JAVA的可变类与不可变类 可变类和不变类(Mutable and immutable class)的初步定义: 可变类: 当你获得这个类的一个实例引用时,你可以改变这个实

archlinux install

archlinux install download iso https://mirrors.aliyun.com/archlinux/iso/2025.04.01/ 1 curl -O http://mirrors.163.com/archlinux/iso/2022.02.01/archlinux-2022.02.01-x86_64.iso ventory, usb-stick copy to ventoy usb partition 用 ventoy U 盘引导系统 启动 sshd 设置 root 密码 进入 root@archiso 之后先设置 root 密码 1 passwd 连无线网 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 # 20250501, archlinux 的

windows netsh 端口转发

windows netsh 端口转发 http://aofengblog.blog.163.com/blog/static/631702120148573851740/ 在windows上用netsh动态配置端口转发 下载LOFTER客户端 使用多个虚拟机,将开发环境和工作沟通环境分开 (即时通,办公

TypeScript

TypeScript TypeScript是一种由微软开发的自由和开源的编程语言。它是JavaScript的一个超集,兼容JavaScript,可以载入JS代码

临界区, 竞态条件

临界区, 竞态条件 临界区是程序中使用临界资源的一段程序 在同步的程序设计中,临界区 (Critical section) 指的是一个访问共享资源 (例如: 共享设备或是共享存储器) 的程

html input

html input 1 <input type="value0"> hidden 定义隐藏的输入字段。 Hidden 对象代表一个 HTML 表单中的某个隐藏输入域。 这种类型的输入元素实际上是隐藏的。这个不可见的表单元素的 value 属性保存了

javascript 序列化与反序列化

javascript 序列化与反序列化 http://blog.csdn.net/zhangquanok/article/details/13002771 1 2 3 4 5 6 7 8 9 10 11 12 13 14 var objP = {}; objP.id = 1; objP.name = 2; objP.sex = 32; JSON.stringify(objP)//序列化 JSON.parse(e); //JSON.

配置文件 HOCON

‘配置文件 HOCON’ HOCON (Human-Optimized Config Object Notation) 是一个易于使用的配置文件格式。 是由typesafe (开发scala和play framework的公司) 主导

系统架构图

系统架构图 系统架构图怎么画?系统架构图首先是人,人是构成系统架构图的核心,也就是系统架构师。IBM工程师的说明是: 架构师的主要责任是提供开发

移动平均线交叉交易策略

移动平均线交叉交易策略 移动平均线交叉外汇交易策略 — 是一种简单的交易系统,基于两个标准指标的交叉 —一条快的EMA (指数移动平均线) 和一条慢的E

外汇EA

外汇EA http://foreign.ymq123.com/showtopic-38641.aspx 什么是外汇EA 中文全名叫智能交易系统,是通过电脑模拟人为操作来完成交易。交易员通过将交易思路进行编程,从而使电脑按照交易员的交易思

HTML id、name、class

HTML id、name、class http://blog.csdn.net/ithomer/article/details/8080912 HTML中id、name、class 区别 分类: Script2012-10-17 13:53 27969人阅读 评论(7) 收藏 举报 classhtmlcssi

possibly; probably; perhaps; maybe

possibly; probably; perhaps; maybe http://web.etiantian.com/staticpages/study/question/question_701044.htm 这几个副词都有"可能"的意思,用法如下: (1) possible"或许;也许”,所指的可能性较

Runtime

Runtime http://blog.csdn.net/csh624366188/article/details/6684327 http://lavasoft.blog.51cto.com/62575/15565 Runtime.getRuntime()可以取得当前JVM的运行时环境,这也是在Java中唯一一个得到运行时环境的方法。 Runtime

RDP Session Disconnected

RDP Session Disconnected To resolve Right click on “My Computer” and select “Properties”. Click on “Remote settings”. Click on the “Remote” tab. Under “Remote Desktop” select the radio button next to “Allow connections from computers running any version of Remote Desktop (less secure)". Click “OK” to Save. Also check to make sure you don’t have any sort of VNC Server installed (like TightVNC, Ultra VNC, RealVNC, etc). If you do then you should uninstall it to ensure that RDP connections work properly.

nj4x java config

nj4x java config nj4x requires jdk 1.7 !!! download jfx-2.3.8.7z from http://www.nj4x.com/downloads unpack clear the config file folder under C:\Users\user0\jfx_term terminal server找不到配置文件时会提示指定mt4.exe open nj4x_home/bin/run_terminal_server.exe ( if errordownload and install vcredist_x86.ext ) select/config mt4_home path run java code —– end —– copy nj4x-2.3.8/examples/experts/ into mt4 foolder

archlinux 64位上运行32位程序

archlinux 64位上运行32位程序 http://blog.csdn.net/cnsword/article/details/7447670 archlinux纯64位版是没有办法直接运行32位程序的。因为缺少最主要的glibc的32位版本的支持。 要想使a

poi获取Excel合并单元格的值

poi获取Excel合并单元格的值 http://zhoupuyue.iteye.com/blog/1136255 /** 获取合并单元格的值 @param sheet @param row @param column @return */ public String getMergedRegionValue(Sheet sheet ,int row , int column){ int sheetMergeCount = sheet.getNumMergedRegions(); for(int i = 0 ; i < sheetMergeCount ; i++){ CellRangeAddress ca = sheet.getMergedRegion(i); int firstColumn = ca.getFirstColumn(); int lastColumn =

MySQL 字典表

MySQL 字典表 1 2 select column_key,COLUMN_NAME,column_type,is_nullable,column_comment from INFORMATION_SCHEMA.Columns where table_name=" and table_schema=" 显示数据库列表 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 MySQL>show databases; -- 说明: 其中字典库是: information_schema