0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

マジックナンバー

Last updated at Posted at 2025-09-16

プログラミングにおけるマジックナンバーについてまとめる

  • マジックナンバーとは
    プログラムのソースコードに出てくる意味不明な数字のこと

例:

<?php
$ticketPrice = 1800;
$totalPrice = $ticketPrice * 2;
?>

この場合だと2が何を表しているのかわからず、マジックナンバーになっている
そのためこの2を意味のある言葉に置き換えるべきである

<?php
const TICKET_COUNT = 2; // チケットの枚数を意味する定数

$ticketPrice = 1800;
$totalPrice = $ticketPrice * TICKET_COUNT;
?>

const TICKET_COUNT = 2;にすることで見ただけでチケットの枚数だとわかるようになる

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?