雑なメモ書き

気楽にいきます

2020-02-05から1日間の記事一覧

objdumpのソースコードがUbuntuで欲しい

所属パッケージを探す dpkg -S objdump zsh-common: /usr/share/zsh/functions/Completion/Unix/_objdump binutils-common:amd64: /usr/share/man/man1/objdump.1.gz binutils-x86-64-linux-gnu: /usr/share/man/man1/x86_64-linux-gnu-objdump.1.gz binutil…

rustで所有権ぽいやつをコードで追ってみる

所有権の説明 doc.rust-lang.org 本家を読むと出てくる 以下の3つのルールが気になる訳です Each value in Rust has a variable that’s called its owner. There can only be one owner at a time. When the owner goes out of scope, the value will be dr…