博客
关于我
读书笔记-2019年03月01日
阅读量:179 次
发布时间:2019-02-28

本文共 4051 字,大约阅读时间需要 13 分钟。

Git????

????????Git????????

1. ????

- ?????`git branch ????` - ????????`git branch -b ???` - ?????`git checkout ???` - ???????`git branch` - ???????????`git branch -v` - ???????`git branch -vv` - ??????????`git branch -b -o origin/???` - ?????????`git branch --merged` - ??????????????`git branch --no-merged` - ???????`git branch -d ???` - ???????`git branch -D ???` - ?????????`git branch origin :???` - ??????????`git merge ???`

2. ????

- ???????`git stash` - ?????????`git stash apply` - ??????????`git stash pop` - ???????`git stash list` - ???????`git stash drop stash@{0}` - ?????`git stash clear`

3. ????

- ?????????`git reset --hard HEAD^` - ????????`git reset --hard commit_id` - ???????`git checkout ? file` - ???????????`git reset HEAD file`

4. ????

- ?????`git tag ???`????????? - ?????????`git tag ??? commit_id` - ???????????`git tag -a ??? -m "??"` - ???????`git tag` - ???????`git show ???` - ???????`git tag -d ???` - ??????????`git push origin ???` - ???????`git push origin --tags` - ??????????`git push origin :refs/tags/???`

5. ????

- ?????`git push origin test` - ???????`git rm -r --cached ??/?????` - ?????????`git reflog` - ????????`git log --graph` - ???Fast forward?????`git merge --no-ff -m "??" ???` - ???????`git check-ignore -v ???` - ???????`git add -f ???`

6. Git??????

1. ??????`git init` 2. ???????`git remote add origin url` 3. ?????`git pull` 4. ???????`git fetch`

7. ????

- ???????`git update-index --assume-unchanged file` - ???????`git rm -r --cached ??/?????`

8. ??????

- ?????`git update-index --no-assume-unchanged file`

9. ???????

- ?????`git config --global credential.helper store`

Android?????

??Activity?????

?????????Activity??????

A. `finish()` B. ??????? C. `System.exit()` D. `onStop()` ???C

???

  • finish()??????Activity????????????
  • System.exit()???JVM?????????????????Activity??
  • onStop()?Activity????????????????

????????

?????????????

A. `ImageButton` B. `Button` C. `ToggleButton` D. `Switch` ???A

???

  • ImageButton?????????
  • ?????Button?ToggleButton?Switch??????????????????????

AsyncTask??????

??AsyncTask??????????

A. `onProgressUpdate()` B. `onPostExecute()` ? `onProgressUpdate()` C. `onPostExecute()` D. `doInBackground()`?`onPostExecute()` ? `onProgressUpdate()` E. `doInBackground()` ???B

???

  • onProgressUpdate()?onPostExecute()?????????
  • doInBackground()???????

??SDK????

???APP???SDK?????8???????????????

A. ??? B. 8 C. 9 D. 7 ???D

???

  • SDK??8??????????8????APP????Android 8?????
  • Android??????SDK??????????7?????

??APP???

????APP???????????

A. ??? B. ????`package`?? C. ?????????? D. ???? ???D

???

  • ??????APP???????????????

View?SurfaceView?GLSurfaceView???

?????????????

- `View`?????UI??????UI???????????? - `SurfaceView`?`View`?????????????????????????`View`?? - `GLSurfaceView`?`SurfaceView`??????OpenGL??????????????

Activity???Dialog???

????Activity?___ ?????????Dialog???

A. `theme` B. `style` C. ??? D. `color` ???A

???

  • ????theme??????Activity?????????????Dialog?

manifest?????

???????manifest?????

A. ?? B. ????API?? C. ???????? D. ????????Activity??? ???A

???

  • manifest????????APP????????????
    • ?????API??
    • ????
    • Activity????????
    • ???? Activity
    • ?????????????

Android???????

Android????????????????

A. ????? B. ????????? C. ??????? D. ???????????????? ???D

???

  • Android???????????????????????????

ListAdapter?????

???ListAdapter????BaseAdapter??????

A. `ArrayAdapter` B. `HeaderViewListAdapter` C. `SimpleAdapter` D. `CursorAdapter` ???B

???

  • ArrayAdapter?SimpleAdapter?CursorAdapter??BaseAdapter??????
  • HeaderViewListAdapter?Adapter???????BaseAdapter??????

??Activity?????

??????Activity????????????????Activity?

A. category B. data C. ??? D. action ???C

???

  • Android????intent?action?category?data??????????Activity?????

Menu?????

?Android???Menu??????????????

A. `onCreateOptionsMenu()` B. `onCreateMenu()` C. `onOptionsItemSelected()` D. `onItemSelected()` ???A?C

???

  • onCreateOptionsMenu()???????
  • onOptionsItemSelected()????????????

C????

C???????????????????????????????

![C????](https://img-blog.csdnimg.cn/20190301125223686.png)

![C????](https://img-blog.csdnimg.cn/20190301125244226.png)

转载地址:http://wtzi.baihongyu.com/

你可能感兴趣的文章
MySQL中interactive_timeout和wait_timeout的区别
查看>>
mysql中int、bigint、smallint 和 tinyint的区别、char和varchar的区别详细介绍
查看>>
mysql中json_extract的使用方法
查看>>
mysql中json_extract的使用方法
查看>>
mysql中kill掉所有锁表的进程
查看>>
mysql中like % %模糊查询
查看>>
MySql中mvcc学习记录
查看>>
mysql中null和空字符串的区别与问题!
查看>>
MySQL中ON DUPLICATE KEY UPDATE的介绍与使用、批量更新、存在即更新不存在则插入
查看>>
MYSQL中TINYINT的取值范围
查看>>
MySQL中UPDATE语句的神奇技巧,让你操作数据库如虎添翼!
查看>>
Mysql中varchar类型数字排序不对踩坑记录
查看>>
MySQL中一条SQL语句到底是如何执行的呢?
查看>>
MySQL中你必须知道的10件事,1.5万字!
查看>>
MySQL中使用IN()查询到底走不走索引?
查看>>
Mysql中使用存储过程插入decimal和时间数据递增的模拟数据
查看>>
MySql中关于geometry类型的数据_空的时候如何插入处理_需用null_空字符串插入会报错_Cannot get geometry object from dat---MySql工作笔记003
查看>>
mysql中出现Incorrect DECIMAL value: '0' for column '' at row -1错误解决方案
查看>>
mysql中出现Unit mysql.service could not be found 的解决方法
查看>>
mysql中出现update-alternatives: 错误: 候选项路径 /etc/mysql/mysql.cnf 不存在 dpkg: 处理软件包 mysql-server-8.0的解决方法(全)
查看>>