Syntactic Sugar 语法糖,使得代码更加甜: 更容易阅读和书写
how: 通过简化书写来实现
example:
1 2 3 4 5 a = a+1; a += 1 var a = 100 a := 100
Passing Props to a Component – React - https://react.dev/learn/passing-props-to-a-component
basic concept props:
info pass from parent info pass by jsx tag read from function({xx,xxx}) read only simple example 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 import React, { useEffect, useState } from "react"; import ReactDOM from "react-dom"; import ".
refactor code Review the following code and refactor it to make it more DRY and adopt the SOLID programming principles. Can you make the code more compact and more DRY Simplify this block of code. Refactor this code to make it more readable Refactor the given [language] code to improve its error handling and resilience: Analyze the given [language] code for code smells and suggest improvements: [code snippet]. bug detection. Review this code for errors and refactor to fix any issues Locate any logic errors in the following [language] code snippet: [code snippet].
Golang 错误处理和日志打印的 5 点建议 - https://blog.hackerpie.com/posts/programming-paradigm/golang-error-logs/
Working with Errors in Go 1.13 - The Go Programming Language - https://go.dev/blog/go1.13-errors
golang错误处理最佳实践 | 余温旧梦-王世彪的博客 - https://www.sofineday.com/golang-err.html#%E4%B8%80-%E5%B8%B8%E7%94%A8%E7%9A%84%E9%94%99%E8%AF%AF%E5%8C%85%E8%A3%85%E6%96%B9%E6%B3%95
3种方式!Go Error处理佳实践 - 文章详情 - https://z.itpub.net/article/detail/7F1B2EB3C5F2E6F989C2E0B9B9C183E8
Go错误处理:错误链使用指南 | Tony Bai - https://tonybai.com/2023/05/14/a-guide-of-using-go-error-chain/
是什么?
what vs other sential error 什么是好的错误处理,以及如何
基础概念
是什么? vs other? feature 最佳实践
要求 如何做 go 中的error 1 2 3 4 5 6 7 8 9 10 11 12 13 type errorString struct { s string } func (e *errorString)Error()string { return e.
Effective Error Handling in Golang - Earthly Blog - https://earthly.dev/blog/golang-errors/ Golang Error Handling — Best Practice in 2020 | by Che Dan | ITNEXT - https://itnext.io/golang-error-handling-best-practice-a36f47b0b94c
error handle how go handle error:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 f, err := os.OpenFile("test1.txt", os.O_RDONLY, 0666) if err != nil { fmt.Println("open file error") } defer f.Close() type errorString struct { s string } func (e *errorString) Error() string { return e.
C&C++ CS OS“编写你自己的内存分配器”
C数据存储(包括const存储在哪,C++不同部分我在文中用红字已指出)
Go: Introduction to the Analysis
go 内存分配
Go: Introduction to the Analysis
Implementing malloc and free
18张图解密新时代内存分配器TCMalloc
Go内存分配那些事,就这么简单
TCMalloc解密
tcmalloc原理剖析(基于gperftools-2.1) C/C++内存对齐详解
底层原理:垃圾回收算法是如何设计的?
从源码讲解 golang 内存分配
Memory Management in Golang
Go: How Does the Garbage Collector Mark the Memory?
Go: Memory Management and Memory Sweep
典藏版Golang三色标记、混合写屏障GC模式图文全分析
Concurrent Mark and Sweep(并发标记-清除)
7.2 垃圾收集器
Golang 三色标记和混合写屏障
GC
图示Golang垃圾回收机制
8.2 写屏障技术
图文结合,白话 Go 的垃圾回收原理
Golang源码探索(三) GC的实现原理
golang 垃圾回收(五)混合写屏障
Go GC 如何优化掉重新扫描协程栈