V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  Cbdy  ›  全部回复第 102 页 / 共 142 页
回复总数  2829
1 ... 98  99  100  101  102  103  104  105  106  107 ... 142  
2018-10-07 13:42:01 +08:00
回复了 ft3312591 创建的主题 程序员 关于 html5 的桌面通知,如何实现实时推送
sse 和 ws 都行吧,倾向于用 ws,灵活没跨域,可以弄一个专门的消息服务
2018-10-07 10:44:23 +08:00
回复了 oldIron 创建的主题 职场话题 该如何处理这种压力
及时沟通,不要大恩成仇😄
2018-10-02 15:45:30 +08:00
回复了 zsh1995 创建的主题 Java effective Java 已经有新版了,国内啥时候能引进?
求人不如求己,建议学好洋文
用自家的域名做一下 cname 很难吗?
2018-09-29 19:24:19 +08:00
回复了 aLazarus 创建的主题 程序员 有时候和同事一起工作简直就是降低效率…
换 node,前后都自己写,没有这么多幺蛾子
2018-09-29 12:56:18 +08:00
回复了 vjnjc 创建的主题 问与答 求问聊天信息该怎么存储?
tidb
2018-09-28 20:08:55 +08:00
回复了 v2byy 创建的主题 程序员 typora bug 有点多啊
你更新一下吧,现在最新是 0.9.9.18.1
2018-09-28 15:02:40 +08:00
回复了 Wang1990 创建的主题 问与答 有偿征集店名,采用发 5000 利是
刺激吃鸡
2018-09-27 19:08:13 +08:00
回复了 bbbai 创建的主题 程序员 一个 Java 的小问题
Effective Java 第三版第二章第一节有详细介绍

我简单摘录一下:

### 优点

One advantage of static factory methods is that, unlike constructors, they have names.

A second advantage of static factory methods is that, unlike constructors, they are not required to create a new object each time they ’ re invoked.

A third advantage of static factory methods is that, unlike constructors, they can return an object of any subtype of their return type.

A fourth advantage of static factories is that the class of the returned object can vary from call to call as a function of the input parameters.

A fifth advantage of static factories is that the class of the returned object need not exist when the class containing the method is written.

### 缺点

The main limitation of providing only static factory methods is that classes without public or protected constructors cannot be subclassed.

A second shortcoming of static factory methods is that they are hard for programmers to find.

### 一些常见的静态构造方法

**from**: A type-conversion method that takes a single parameter and returns a corresponding instance of this type, for example:

```java
Date d = Date.from(instant);
```

**of**: An aggregation method that takes multiple parameters and returns an instance of this type that incorporates them, for example:

```java
Set<Rank> faceCards = EnumSet.of(JACK, QUEEN, KING);
```

**valueOf**: A more verbose alternative to from and of, for example:

```java
BigInteger prime = BigInteger.valueOf(Integer.MAX_VALUE);
```

**instance** or **getInstance**: Returns an instance that is described by its parameters (if any) but cannot be said to have the same value, for example:

StackWalker luke = StackWalker.getInstance(options);

**create** or **newInstance**: Like instance or getInstance, except that the method guarantees that each call returns a new instance, for example:

```java
Object newArray = Array.newInstance(classObject, arrayLen);
```
根据我的实践,在 windows 上用 docker 最佳的方案是虚拟机,里面装个 Linux,然后再用 docker。虚拟化可以用 VirtualBox
2018-09-27 06:44:18 +08:00
回复了 Sinar 创建的主题 Java Java 11 发布啦!
tls1.3 好评
2018-09-26 06:07:07 +08:00
回复了 Livid 创建的主题 Docker docker compose 和 docker stack 的区别
又黑 Python
2018-09-21 08:04:47 +08:00
回复了 baskice 创建的主题 问与答 有没有什么简单办法 log 本机 ip 传到服务器上?
写一个程序 post-ip,然后 ifconfig | post-ip,服务端再解析一下
2018-09-18 07:09:34 +08:00
回复了 caiem 创建的主题 程序员 有个高并发接口,需要即时获取访问者的 ip 信息
MySQL 放内存里跑
2018-09-17 12:53:04 +08:00
回复了 ColinZeb 创建的主题 汽车 当了一次马路杀手
1. 提前操作
2. 按道行驶
3. 远离大车
4. 买好保险
加班两天换一天调休还行,老东家也是这样
周末一换一,周天二换一
2018-09-13 15:54:49 +08:00
回复了 annya 创建的主题 问与答 迫于实在没啥好想法,求推荐送男生礼物!!
年轻人的第一台。。。无人机?
1 ... 98  99  100  101  102  103  104  105  106  107 ... 142  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2741 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 46ms · UTC 05:28 · PVG 13:28 · LAX 21:28 · JFK 00:28
Developed with CodeLauncher
♥ Do have faith in what you're doing.