惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
Engineering at Meta
Engineering at Meta
腾讯CDC
宝玉的分享
宝玉的分享
H
Help Net Security
I
InfoQ
博客园 - Franky
The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Security Blog
Microsoft Security Blog
M
MIT News - Artificial intelligence
博客园_首页
美团技术团队
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
The Cloudflare Blog
博客园 - 司徒正美
Vercel News
Vercel News
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
月光博客
月光博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
useState vs useReducer in React
Vidya · 2026-06-13 · via DEV Community

Vidya

What is useState?

useState is a React Hook that allows functional components to create and manage state. Before Hooks were introduced, state could only be managed inside class components. With useState, developers can store values such as numbers, strings, booleans, arrays, and objects directly inside functional components and update them whenever needed.

Whenever the state changes, React automatically re-renders the component and updates the UI with the latest data.

Syntax

const [state, setState] = useState(initialValue);

--> state → Current value of the state.
--> setState → Function used to update the state.
--> initialValue → Initial value assigned to the state.

Example: Counter Application

import React, { useState } from "react";

function Counter() {
  const [count, setCount] = useState(0);

  return (
    <div>
      <h2>Count: {count}</h2>

      <button onClick={() => setCount(count + 1)}>
        Increment
      </button>
    </div>
  );
}

export default Counter;

How it Works
=> useState(0) initializes the state with 0.
=> count stores the current value.
=> setCount() updates the value.
=> When the button is clicked, React re-renders the component with the updated count.

When to Use useState?

--> Counter applications
--> Show/Hide functionality
--> Theme switching
--> Simple forms
--> Managing a single piece of state

What is useReducer?

useReducer is a React Hook used for managing complex state logic. Instead of updating state directly, it uses a reducer function and actions to determine how the state should change.

It follows the same concept as Redux, where actions are dispatched and a reducer function decides the next state based on the action type.

useReducer is useful when a component has multiple state values or complex update logic.

Syntax


const [state, dispatch] = useReducer(reducer, initialState);

=> state → Current state.
=> dispatch → Function used to send actions.
=> reducer → Function that handles state updates.
=> initialState → Initial state value.

Example: Counter using useReducer

import React, { useReducer } from "react";

const initialState = { count: 0 };

function reducer(state, action) {
  switch (action.type) {
    case "increment":
      return { count: state.count + 1 };

    case "decrement":
      return { count: state.count - 1 };

    default:
      return state;
  }
}

function Counter() {
  const [state, dispatch] = useReducer(
    reducer,
    initialState
  );

  return (
    <div>
      <h2>Count: {state.count}</h2>

      <button onClick={() =>
        dispatch({ type: "increment" })
      }>
        Increment
      </button>

      <button onClick={() =>
        dispatch({ type: "decrement" })
      }>
        Decrement
      </button>
    </div>
  );
}

export default Counter;

How it Works

--> initialState stores the starting state.
--> reducer() receives the current state and action.
--> dispatch() sends an action.
--> The reducer decides how the state should change.
--> React re-renders the component with the updated state.

Real-World Example
Using useState

const [name, setName] = useState("");
const [email, setEmail] = useState("");
const [age, setAge] = useState("");

--> This is fine for a small form with a few fields.

Using useReducer

const initialState = {
  name: "",
  email: "",
  age: ""
};

function reducer(state, action) {
  switch (action.type) {
    case "UPDATE_NAME":
      return { ...state, name: action.payload };

    case "UPDATE_EMAIL":
      return { ...state, email: action.payload };

    case "UPDATE_AGE":
      return { ...state, age: action.payload };

    default:
      return state;
  }
}

--> For large forms with validations and multiple updates, useReducer keeps the code cleaner and easier to maintain.