V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  fengjianxinghun  ›  全部回复第 48 页 / 共 67 页
回复总数  1329
1 ... 44  45  46  47  48  49  50  51  52  53 ... 67  
2020-08-14 19:03:31 +08:00
回复了 potato42 创建的主题 问与答 哪句话支撑你度过许多煎熬时刻?
你可以是个 loser,但不能是个 soft loser 。
2020-08-14 18:39:27 +08:00
回复了 linxiaoziruo 创建的主题 Java zk 脑裂问题
@hangszhang 我在微博打出这 2 个字 ren qi,还被封号了。。
2020-08-14 17:37:29 +08:00
回复了 enchilada2020 创建的主题 程序员 Mozilla 裁员, MDN 何去何从…
微软自己的 web 文档都重定向到 MDN 了,结果 MDN 没了。
同 15 年款鼓包。。。
2020-08-13 10:43:21 +08:00
回复了 goforwardv2 创建的主题 C++ c++ 可以通过 dump 或 core 调试分析出哪个线程修改了变量吗?
@haozhang 单步往往就没有 race 了
2020-08-13 09:49:18 +08:00
回复了 YLyu 创建的主题 程序员 Rust 要熬出头了?
@zjsxwc 别扯了,用了这么久 stable,写代码依赖这么多 cargo,就没见过几个 nighttly only 的。
@Hlianbobo 能快速读懂一门全新语言是基本功
自学半年编程,去培训学校面试老师成功教 c++能投稿么?
有人明白为什么官方示例代码没有或很少有注释?

因为没人愿意写文档或者注释。

三:看源码
2020-08-07 10:34:09 +08:00
回复了 xiaotianhu 创建的主题 程序员 关于[技术相关]学习的反思
不需要用到的东西不用学,要去做什么立刻去学就对了。
2020-08-05 15:09:23 +08:00
回复了 viktor123 创建的主题 程序员 Golang 泛型:[type T],为啥要用中括号呢。。。
@Mohanson 这点前端 parse 的开销基本微乎其微。
2020-08-05 11:11:56 +08:00
回复了 viktor123 创建的主题 程序员 Golang 泛型:[type T],为啥要用中括号呢。。。
```go

package main

import (
"fmt"
)


// The playground now supports parentheses or square brackets (only one at
// a time) for generic type and function declarations and instantiations.
// By default, parentheses are expected. To switch to square brackets,
// the first generic declaration in the source must use square brackets.


type primitive interface {
type string, int, uint, float32
}

func Print[type T primitive](s []T) {
for _, v := range s {
fmt.Print(v)
}
fmt.Print("\n")
}

func main() {
Print([]string{"Hello, ", "playground"})
Print([]int{1,2,3,4,5})
Print([]float32{1.0})
}


```
2020-08-05 10:48:24 +08:00
回复了 viktor123 创建的主题 程序员 Golang 泛型:[type T],为啥要用中括号呢。。。
欢迎,[]()()() 比 ()()()()至少强了一分钱。
2020-07-31 18:07:17 +08:00
回复了 beryl 创建的主题 程序员 开发前真的会画详细的 UML 图么
不画,浪费时间。需要写文档和画图才能搞清楚的,你还是多想想。
2020-07-30 18:01:39 +08:00
回复了 PygmalionEffect 创建的主题 职场话题 图形技术迷茫了,还请各位老哥给解解惑
过来人建议转行。。。。
2020-07-30 13:15:41 +08:00
回复了 ysmood 创建的主题 Go 编程语言 Rod 一个为简化自动化和爬虫设计的 devtools driver
这东西不错,回头试试。
2020-07-29 10:02:01 +08:00
回复了 sockpuppet9527 创建的主题 程序员 谈谈 code review?
深层问题从来看不出来,只能在一些格式风格上吹毛求疵以符合 code review kpi 。
1 ... 44  45  46  47  48  49  50  51  52  53 ... 67  
关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3962 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 36ms · UTC 00:09 · PVG 08:09 · LAX 17:09 · JFK 20:09
Developed with CodeLauncher
♥ Do have faith in what you're doing.