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

推荐订阅源

Martin Fowler
Martin Fowler
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
Jina AI
Jina AI
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
L
LangChain Blog
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
美团技术团队
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium
D
DataBreaches.Net
P
Proofpoint News Feed
小众软件
小众软件
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
WordPress大学
WordPress大学
雷峰网
雷峰网
G
Google Developers 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
Class Method and Static Method Explained with Examples
Shameel Uddin · 2026-06-27 · via DEV Community

Introduction

When learning Object-Oriented Programming (OOP) in Python, you will often work with three types of methods:

  • Instance Methods
  • Class Methods
  • Static Methods

Understanding when and why to use each one will help you write cleaner, more organized, and reusable code.

In this article, we will learn Class Methods and Static Methods with practical examples.

Why Do We Need a Class Method?

Suppose user data comes from a JSON string or a database. Without a class method, we must process the data outside the class every time before creating an object.

For example:

import json

class InefficientUser:
    def __init__(self, username, email):
        self.username = username
        self.email = email

    # This is an INSTANCE method — you have to create a user FIRST to call it,
    # even though you really want to validate the email BEFORE creating one.
    def is_valid_email(self, email):
        return "@" in email

user_json = '{"username": "ammad", "email": "ammad@hasabtech.com"}'
data = json.loads(user_json)
user = InefficientUser(data["username"], data["email"])
print(f"Created user externally: {user.username}")

In the code above, we manually convert the JSON string into a dictionary every time:

data = json.loads(user_json)
user = InefficientUser(data["username"], data["email"])

If we need to create multiple objects, we will have to repeat the same code again and again. This makes the code less efficient and harder to maintain.

What is a Class Method?

A Class Method is a method that belongs to the class rather than a specific object.

It is created using the @classmethod decorator and receives cls as its first parameter.

Class methods are commonly used as factory methods or alternative constructors, allowing objects to be created in different ways.

Class Method Example

import json

class User:
    system_name = "hasabTech OOP Portal"

    def __init__(self, username, email):
        self.username = username
        self.email = email

    # 1. Instance method — takes self, has access to instance AND class data
    def display_profile(self):
        print(f"User: {self.username}, Email: {self.email}, System: {User.system_name}")

    # 2. Class method — takes cls, has access to class-level data, used as a factory
    @classmethod
    def from_json(cls, json_string):
        """Alternative constructor: create a User object directly from a JSON string."""
        data = json.loads(json_string)
        # cls is the class itself (User). Calling cls(...) creates the instance.
        return cls(username=data["username"], email=data["email"])


Understanding the Code

  • system_name is a class variable.
  • username and email are instance variables.
  • display_profile() is an instance method.
  • from_json()is a class method.
  • cls refers to the class itself.
  • cls(...)creates and returns a new object

Using the Class Method

# Using Class Method (Factory pattern to create object)
user_data = '{"username": "shameel", "email": "shameel@hasab.tech"}'
user1 = User.from_json(user_data) # create user1 directly!
user1.display_profile()

Output:

User: shameel, Email: shameel@hasab.tech, System: hasabTech OOP Portal

Here, the JSON data is processed inside the class, making object creation much cleaner.

Why Do We Need a Static Method?

In programming, we often use utility functions (also called helper functions).

Examples include:

  • Checking whether an email is valid
  • Checking password length
  • Verifying password complexity
  • Formatting text
  • Validating input data

These tasks usually do not need access to object data or class data.

If we only had instance methods, we would need to create an object before calling such functions.
Example:

dummy=InefficientUser("dummy", "dummy@email.com")
print(f"is email valid? {dummy.is_valid_email('test@hasab.tech')}")

Creating an object just to validate an email is unnecessary.

What is a Static Method?

A Static Method is a method that belongs to the class namespace but does not have access to:

  • Instance variables (self)
  • Class variables (cls)

It works like a normal function placed inside a class because it is logically related to that class.

Static methods are created using the @staticmethod decorator.

Static Method Example

@staticmethod
def is_valid_email(email):
    """Utility Method: Check email validity without needing class or instance"""
    return "@" in email and email.endswith(".tech")

Understanding the Code

Notice that:

  • There is no self.
  • There is no cls.
  • The method only uses the data passed to it.
  • It acts like a utility/helper function

Calling a Static Method

#Using Static Method (No instance method)
email_ok = User.is_valid_email("shameel@hasab.tech")
print(f"Static Method Email Check: {email_ok}") 

Output:

Email Valid: True

The method is called directly from the class without creating an object.

Summary

In Python:

  • Instance methods work with object-specific data and use self.
  • Class methods work with class-level data and use cls.
  • Static methods do not depend on either the class or the object and behave like utility functions.
  • Class methods are commonly used as factory methods or alternative constructors.
  • Static methods are useful for validation and helper functions that are logically related to the class.

Understanding these three method types will help you write cleaner, more professional, and maintainable Python code.

Conclusion

Class methods and static methods are important parts of Python OOP. A class method helps create objects in different ways, while a static method helps organise utility functions inside a class.

Use a Class Method when you need to create or manage objects at the class level.

Use a Static Method when you need a helper function that does not require access to instance or class data.

Watch the Complete Video Tutorial

Want to see these concepts in action?

Watch the complete YouTube tutorial where I explain Class Methods, and Static Methods with practical coding examples.

Stay connected with hasabTech for more information:
Website | Facebook | LinkedIn | YouTube | X (Twitter) | TikTok