博客
关于我
读书笔记-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/

你可能感兴趣的文章
Python变量与运算符
查看>>
Python变量/运算符/函数/模块/string
查看>>
python发送邮件的时候出现 error (535, b‘5.7.3 Authentication unsuccessful‘) 解决方法
查看>>
python系列【仅供参考】:python flask框架 debug功能
查看>>
python发送notes邮件_使用python在Lotus Notes中发送邮件
查看>>
Python双版本下创建一个Scrapy(西瓜皮)项目
查看>>
Python双版本下No module named 'requests'
查看>>
python及pycharm2018软件安装教程
查看>>
python去重txt文本_Python实现的txt文件去重功能示例
查看>>
python去掉列表的逗号,从Python列表项中删除标点符号
查看>>
Python卸载所有包
查看>>
python单线程下实现多个socket并发
查看>>
Python单元测试框架介绍(超详细~)
查看>>
Python单元测试框架
查看>>
python单元测试之unittest
查看>>
Python单元测试unittest实战
查看>>
Python单元测试-模拟VS补丁
查看>>
python协程实时输出_Python 协程以及事件循环的问题,怎么知道 IO 读取结束了呢?...
查看>>
Python十进制&;包提供错误的结果
查看>>
Python化身“安全老中医”:一键搞定工控系统漏洞,从零基础到精通,收藏这篇就够了!
查看>>