1 创建新对象 BigDecimal BigDecimal(double d); //不允许使用,精度不能保证 BigDecimal BigDecimal(String s); //常用,推荐使用 static BigDecimal valueOf(double d); //常用,推荐使用 2 方法 ...
分类:
其他好文 时间:
2021-01-14 10:29:24
阅读次数:
0
Markdown学习 标题 三级标题 四级标题 字体 hello word! hello word! hello word! hello word! 引用 学java 走向人生的巅峰 分割线 三个* 三个- 图片 超链接 点击跳转到百度 列表 A 1. 空格 B C A B 减号空格 表格 名字性别 ...
分类:
其他好文 时间:
2021-01-13 11:36:38
阅读次数:
0
简而言之,The7是市场上最可定制的wordpress主题。它具有630多种设计定制选项。多功能wordpress主题的新手将对The7 Design Wizard感到满意。它允许选择基本设置,例如商标,颜色,标题布局等,并智能计算所有其余设置。Voilà,您的专业级站点设计仅需几分钟即可完成。自动 ...
分类:
Web程序 时间:
2021-01-13 11:11:03
阅读次数:
0
动态代理的使用和个人理解(再看spring aop前的理解) 动态代理调用一个方法,并且对这个方法进行增强,代码如下 代码如下, //接口 1package com.enjoylearning.proxy.unknow;23public interface UnknowToolsFactory {4 ...
分类:
其他好文 时间:
2021-01-13 11:02:08
阅读次数:
0
JS函数 函数定义 function abs(x) { if (x >= 0) { return x; } else { return -x; }} abs()函数实际上是一个函数对象,而函数名abs可以视为指向该函数的变量。 var abs = function (x) { if (x >= 0) ...
分类:
Web程序 时间:
2021-01-13 10:59:59
阅读次数:
0
设计模式:工厂方法模式 定义 工厂方法模式(Factory Method Pattern)又称为工厂模式,又称工厂模式、多态工厂模式和虚拟构造器模式,它属于类创建型模式。在工厂方法模式中,工厂父类负责定义创建产品对象的公共接口,而工厂子类则负责生成具体的产品对象,这样做的目的是将产品类的实例化操作延 ...
分类:
其他好文 时间:
2021-01-12 11:19:33
阅读次数:
0
Word Ladder (H) 题目 Given two words beginWord and endWord, and a dictionary wordList, return the length of the shortest transformation sequence from be ...
分类:
其他好文 时间:
2021-01-12 10:54:49
阅读次数:
0
定义 定义虽然基本没有屌用,因为大部分人都看不懂,但是还的说出来。。。 The intent of the Builder design pattern is to separate the construction of a complex object from its representati ...
分类:
其他好文 时间:
2021-01-12 10:43:10
阅读次数:
0
public class Beersong { public static void main (String[] args){ int beernum =99; String word = "bottle"; while (beernum>0){ if (beernum == 1){ word = ...
分类:
其他好文 时间:
2021-01-11 11:17:35
阅读次数:
0
一、functional pattern 测试覆盖率不够,用functional pattern做为补充。 functional pattern保存在EVCD文件里: TEST-T> set_patterns -external -strobe .. filename.evcd 怎么生成EVCD文件 ...
分类:
其他好文 时间:
2021-01-11 11:05:53
阅读次数:
0