1
0
Fork 0
Obsidian 管理的个人笔记仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

824 B

奇怪的疑惑

  • 什么是双缓存?React 是如何实现双缓存的
  • JSX 和 Fiber 的关系 首屏渲染时 JSX 是创建 Fiber 节点的依据,更新渲染时,JSX 会和 current Fiber 树中的节点做对比生成 workInProgress Fiber
  • React Components 与 React Element 的关系 Components 会作为 React.createElement 的第一个参数,也就是 type 参数
  • 什么是深度优先遍历
  • 在 React 18 ,beginWork 这个方法似乎做了一些修改,具体修改了什么?
  • 什么是按位或?
  • 为什么 React 要尽可能的复用 Fiber, 是因为创建新的 Fiber 非常消耗性能吗?
  • 是不是在 React 运行时中,自始至终都存在两个 Fiber Tree,只是他们的名字会来回交换,一会我是 current 一会他是 current ?