11

Posted Acapplella の 博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了11相关的知识,希望对你有一定的参考价值。

BEGIN INIT INFO

Provides: tightvncserver

Required-Start: $local_fs

Required-Stop: $local_fs

Default-Start: 2 3 4 5

Default-Stop: 0 1 6

Short-Description: Start/stop tightvncserver

END INIT INFO

More details see:

http://www.penguintutor.com/linux/tightvnc

Customize this entry

Set the USER variable to the name of the user to start tightvncserver under

export USER=\'pi\'

End customization required

eval cd ~$USER

case "$1" in
start)
su $USER -c \'/usr/bin/tightvncserver -depth 16 -geometry 800x600 :1\'
echo "Starting TightVNC server for $USER "
;;
stop)
su $USER -c \'/usr/bin/tightvncserver -kill :1\'
echo "Tightvncserver stopped"
;;
*)
echo "Usage: /etc/init.d/tightvncserver start|stop"
exit 1
;;
esac
exit 0

Android Support Annotations :安卓注解快速上手

 我们都知道,安卓资源文件都是int类型的ID来保存其引用,通过注解类型,可以让我们在写代码的时候,及时发现参数类型的错误,避免潜在的BUG,如下:

我们通过@LayoutRes指定了参数必须要是R.layout.xxx格式的数据,传数字IDE就会提示我们错误

技术分享

 

通过gradle,把注解类型引入到项目中 

compile ‘com.android.support:support-annotations:23.1.1‘

 

安卓原生给我们提供了一系列注解类,支持我们的开发

注解类所在包位置:安卓SDK路径extrasandroidm2repositorycomandroidsupportsupport-annotations

 

我们随便找个23.1.1文件夹,找到里面的support-annotations-23.1.1-sources.jar,通过JD-GUI查看

通过里面Res结尾的类,我们就可以限定安卓不同类型的资源ID了

技术分享

里面其他类我们也可以看看,比如NonNull、Nullable、限定范围FloatRange的也很有意思,如下:

技术分享

 

以上是关于11的主要内容,如果未能解决你的问题,请参考以下文章

11.1 LAMP架构介绍 11.2 MySQLMariaDB介绍 11.3/11.4/11.5

11.1 LAMP架构介绍 11.2 MySQLMariaDB介绍 11.3/11.4/11.5 MySQL安装

11.10/11.11/11.12 安装PHP5 11.13 安装PHP7

11.10/11.11/11.12 安装PHP5 11.13 安装PHP7

11.10/11.11/11.12 安装PHP5 11.13 安装PHP7

11.18 Apache用户认证 11.19/11.20 域名跳转 11.21 Apache访问日志