Showing you how you can expose properties on your Controller to access them using #refs inside of your template.// letterSelect.tsimport {Component, V...
分类:
其他好文 时间:
2015-11-01 06:54:05
阅读次数:
409
Explaining how Pipes only change by default when your Pipe input parameters change and not when your data changes. It also shows you how to make an “u...
分类:
其他好文 时间:
2015-11-01 06:53:35
阅读次数:
307
这篇文章是关于网站性能优化体验的,性能优化是一个复杂的话题,牵涉的东西非常多,我只是按照我的理解列出了性能优化整个过程中需要考虑的种种因素。点到为止,包含的内容以浅显的介绍为主,如果你有见解能告知我那再好不过了。无论如何,希望阅读它的你有所收获。我眼中的网站性能问题都反映了一个网站的“Availa....
分类:
其他好文 时间:
2015-11-01 06:53:36
阅读次数:
162
#安装SVN服务器yum install subversion#在home下创建svn根目录mkdir /home/svn#在 /home/svn下创建pro1 , pro2, pro3 三个项目文件夹,这三个文件夹要存放不同项目的SVN版本库。#在 /home/svn中创建 CodeAuth .....
分类:
其他好文 时间:
2015-11-01 06:51:06
阅读次数:
289
C语言编程风格.关于编程风格,不同书上有不同规范,不同公司都有自己的一套定义.根据自己的编程习惯做个简要说明.1.变量定义在定义变量时,前缀使用变量的类型,之后使用表现变量用途的英文单词或单词缩写,且每个单词或缩写的首字母大写.无符号变量使用u...
分类:
其他好文 时间:
2015-11-01 06:52:02
阅读次数:
208
所用软件1.下载并安装myeclipsehttp://pan.baidu.com/s/1c0xkGy0MyEclipse2014创建web项目时,默认是不创建web.xml文件的,所以我们创建web项目命名完项目名后要按Next,然后勾选Generate web.xm2.下载strutshttp:/...
分类:
其他好文 时间:
2015-11-01 06:50:44
阅读次数:
238
C# 常用接口学习 IComparable 和 IComparer 作者:乌龙哈里 时间:2015-11-01平台:Window7 64bit,Visual Studio Community 2015参考: Microsoft Refernce Souce MSDN章节:接口 IConmparabl...
Alice's Print ServiceTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1855Accepted Submission(s): 4...
分类:
其他好文 时间:
2015-11-01 06:50:55
阅读次数:
270
1.文件读取方式 AssetManager.open(String filename),返回的是一个InputSteam类型的字节流,这里的filename必须是文件,而不能是文件夹,AssetManager打开资源文件的open方法是一个重载方法,可以添加一个打开方式的int参数,根据参数不...
分类:
移动开发 时间:
2015-11-01 06:50:25
阅读次数:
232
//跳转到指定的控制器for (UIViewController *Vc in self.navigationController.viewControllers) { if ([Vc isKindOfClass:[WJPersonCenterViewController clas...
分类:
其他好文 时间:
2015-11-01 06:48:50
阅读次数:
172
Spring AOP 手动配置通知类前置通知import java.lang.reflect.Method;import org.springframework.aop.BeforeAdvice;public class GreetingBeforAdvice implements MethodBe...
分类:
编程语言 时间:
2015-11-01 06:49:48
阅读次数:
286
Starting docker (via systemctl): Job for docker.service failed. See 'systemctl status docker.service' and 'journalctl -xn' for details.[FAILED]解决办法:yu...
分类:
其他好文 时间:
2015-11-01 06:50:11
阅读次数:
688
#_*_ coding:utf-8 _*_print_num = input ('which loop do you want it to be printed out?')count = 0while count < 100000:if count == print_num: print 'th....
分类:
编程语言 时间:
2015-11-01 06:50:00
阅读次数:
231
今天在学习的时候需要用到maven工程,当时找完所依赖的包的三要素就开始下载了,写完pom.xml需要一段时间下载这些jar包,就躺在一边等了。可能是笔记本有节能功能这个原因导致我醒来时断网发现满屏missing xxxxxxxx.jar之类信息,记得之前是百度过删除.updated啥文件有过使.....
分类:
编程语言 时间:
2015-11-01 06:49:24
阅读次数:
1817
在java中,字符型变量用char 表示,用来存储字母、数字、标点符号等字符。占两个字节,用unicode编码,可以表示中文和英文。字符要用单引号包围。比如 ‘A‘? ‘我‘ 注意事项: ???? 有些特殊的字符,不能直接用...
分类:
编程语言 时间:
2015-11-01 01:47:51
阅读次数:
241
#define_CRT_SECURE_NO_WARNINGS#include<stdio.h>intmain(){doublea=1.0;doubleb=1.0;doubleSn=0;inti=0;for(i=0;i<20;i++){a=a+b;b=a-b;Sn+=(a/b);}printf("Sn=%f\n",Sn);system("pause");return0;}
分类:
其他好文 时间:
2015-11-01 01:48:19
阅读次数:
130
#define_CRT_SECURE_NO_WARNINGS#include<stdio.h>intmain(){doubleh=100.0;doubleh1=h/2;doublesum=100.0;inti=0;for(i=1;i<10;i++){h1=0.5*h1;h=0.5*h;sum+=2.0*h;}printf("10次后小球共经过的路程和第10次的高度分别为%f%f\n",sum,h1);system("pause");return0;}
分类:
其他好文 时间:
2015-11-01 01:48:29
阅读次数:
172