V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  fengjianxinghun  ›  全部回复第 47 页 / 共 66 页
回复总数  1301
1 ... 43  44  45  46  47  48  49  50  51  52 ... 66  
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 。
2020-07-29 10:00:54 +08:00
回复了 sockpuppet9527 创建的主题 程序员 谈谈 code review?
code review 确实 sb 。
2020-07-29 09:55:41 +08:00
回复了 cquyf 创建的主题 Google 花 30 美元将 Google voice 号码买永久真的有必要吗?
@andynet 想多了,就是为了收验证码对抗实名制
2020-07-27 10:54:40 +08:00
回复了 KalaSearch 创建的主题 NoSQL 写了一篇文章介绍几种 NoSQL 的数据库
@securityCoding +1 影响我使用关系数据库的唯一原因也是 SQL,天生反感。
2020-07-26 21:02:04 +08:00
回复了 fengjianxinghun 创建的主题 Rust Rust 1.45 稳定版出现一个严重 bug
@hst001 这种低级错误都能出现,还能通过测试。。。。我都接受不了了。何况 Linus
2020-07-26 20:56:36 +08:00
回复了 fengjianxinghun 创建的主题 Rust Rust 1.45 稳定版出现一个严重 bug
借引用 =》 解引用
沙县小吃,新一佳超市特供鸡腿,挂逼面+大水
解决不了,弄跳板机的都是一些 SB 。
1 ... 43  44  45  46  47  48  49  50  51  52 ... 66  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1784 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 40ms · UTC 16:43 · PVG 00:43 · LAX 09:43 · JFK 12:43
Developed with CodeLauncher
♥ Do have faith in what you're doing.