Skip to content

Instantly share code, notes, and snippets.

@ulibo-yuki
Created July 14, 2023 23:41
Show Gist options
  • Save ulibo-yuki/ea4a08feca0fb2f237f3ff55f29c3eca to your computer and use it in GitHub Desktop.
Save ulibo-yuki/ea4a08feca0fb2f237f3ff55f29c3eca to your computer and use it in GitHub Desktop.
演算子 名前 意味 内容
i++ 後置インクリメント iを1増加 i=i+1
++i 前置インクリメント iを1増加 i+=1
i-- 後置デクリメント iを1減少 i=i-1
--i 前置デクリメント iを1減少 i-=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment