1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【図解】ReactのuseRefとuseStateの違いを理解する

Posted at

はじめに

業務でuseRefをさわる機会があったのですが、useStateとの違いをイマイチ把握できなかったので、整理しました。

useRefとuseStateの違いまとめ

値更新時のレンダリング有無がポイントのようです。

項目 値の保持 値更新時のレンダリング
useRef できる されない
useState できる される

具体例

サンプルソースコード

app.js
import "./styles.css";

import * as React from "react";

export default function App() {
  const [count, setCount] = React.useState(0);
  const countRef = React.useRef(0);

  return (
    <div className="App">
      <div>カウントuseState: {count}</div>
      <button onClick={() => setCount(count + 1)}>
        カウントアップuseState
      </button>

      <div>カウントuseRef: {countRef.current}</div>
      <button onClick={() => countRef.current++}>
        カウントアップuseRef
      </button>
    </div>
  );
}

デモ

  1. useState用のボタンとuseRef用のボタンを用意
  2. useRef用のボタンを3回クリックする
    • 画面描画が行われず、カウントアップしない
  3. useState用のボタンを3回クリックする
    • 画面描画が行われ、カウントアップする
    • useRef用の表示もここで初めてレンダリングされて、3回クリックした後の表示となる

useRefとuseState.gif

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?