Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

資料怎麼儲被儲存 #2

Open
x03177 opened this issue May 25, 2019 · 0 comments
Open

資料怎麼儲被儲存 #2

x03177 opened this issue May 25, 2019 · 0 comments

Comments

@x03177
Copy link
Owner

x03177 commented May 25, 2019

資料要先放進電腦裡,才去運算和操作它。

把一個資料放進電腦裡的過程。先看這個資料型態(Date type)是什麼後得到記憶體位址的大小,確定記憶體大小後再給這個資料「位址」(address)和「儲存的值」(value)。

例如
你:電腦幫我記住「1」好不好
電腦:好,我用便利貼幫你記住「1」

你:幫我記住「伏見稻荷大社的地址」好不好
電腦:好,我用 A4 紙幫你記住「伏見稻荷大社的地址」

基本有四種

位址(address) 儲存的值(value)
位址 和位址一樣的資料 資料結構一樣
位址 資料 一般的資料
位址 連續一樣的資料 陣列
位址 連續不一樣的資料 物件
  • 第一項位址和資料長得一樣,資料結構相同所以可以互換,通常應用在底層;往上被保護起來,看不到也用不到~
  • 資料還有存放浮點數、負數等等資料的相對應方法。
  • 了解資料存放方式,之後會比較好懂邏輯運算;像是更好瞭解 === 比較的是記憶體的位址(address)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant