#King

Thinking in java基础之集合框架(转载)

集合简介(容器)把具有相同性质的一类东西,汇聚成一个整体,就可以称为集合,例如这里有20个苹果,我们把每一个苹果当成一个东西(一个对象),然后我们借用袋子把这20个苹果装起来,而这个袋子就是集合(也叫容器)。然后呢,我们按照不同的方法装,就是不同的框架。换句话说,集合框架就是数据结构的实现。链表(数据结构)Linked...

thinking in java学习笔记:14章 类型信息

https://github.com/zhaojiatao/javase1、什么是Class对象,Class对象是用来做什么的?Class对象是java程序用来创建类的所有常规对象用的;每个类都有一个Class对象;2、Class对象是如何创建的?当程序创建第一个对类的静态成员(static修饰的成员以及构造方法)的引...

吴裕雄--天生自然轻量级JAVA EE企业应用开发Struts2Sping4Hibernate整合开发学习笔记:Spring_MethodInvokingFactoryBean

<?xmlversion="1.0"encoding="GBK"?><projectname="spring"basedir="."default=""><propertyname="src"value="src"/><propertyname="dest"value="cla...

LinkedBlockingQueue中put源码分析

查看源码得知:LinkedBlockingQueue采用是锁分离的技术//取出锁privatefinalReentrantLocktakeLock=newReentrantLock();//取出锁条件privatefinalConditionnotEmpty=takeLock.newCondition();//插入锁p...

Working with Python subprocess

Posted:2009-04-2815:20Tags:PythonNoteMuchofthe"WhatHappensWhenyouExecuteaCommand?"isbasedoninformationin http://en.wikipedia.org/wiki/Redirection_(computin...

GoogleHacking语法篇

常用GoogleHacking语法:1、intext:(仅针对Google有效)把网页中的正文内容中的某个字符作为搜索的条件 2、intitle:把网页标题中的某个字符作为搜索的条件 3、cache:搜索搜索引擎里关于某些内容的缓存,可能会在过期内容中发现有价值的信息 4、filetype...
代码星球 ·2020-05-17

git clone 报“The project you were looking for could not be found.”

因为自己的项目不止一个又有自动保存git密码的功能,当clone第二个项目的时候就报了如下错误之前一直是找到钥匙串删除,发现有时候并没有效果。今天在网上搜了一下发现了一个新的解决办法在项目前面加用户名gitclonehttps://rdc.hand-china.com/gitlab/项目.gitgitclonehttp...
代码星球 ·2020-05-17

[bug]WCF 内存入口检查失败 Memory gates checking failed

bug描述异常信息:内存入口检查失败,因为可用内存(xxx字节)少于总内存的xx%。因此,该服务不可用于传入的请求。若要解决此问题,请减少计算机上的负载,或调整serviceHostingEnvironment配置元素上的minFreeMemoryPercentageToActivateService的值。说明:执行当...

ssh框架搭建出现的异常: class com.my.entity.user not found while looking for property: id

在处理用户注册的时候,user实体的bean创建不出来,原代码如下:<classname="com.my.entity.User"table="user"><!--name:指定Product类中的属性名column:指定为id的字段名generator:生成策略为本地(默认自动增长)-->&l...

Hooking Android System Calls for Pleasure and Benefit

TheAndroidkernelisapowerfulallytothereverseengineer.WhileregularAndroidappsarehopelesslyrestrictedandsandboxed,you-thereverser-cancustomizeandalterthebehaviorof...

Gym 100952F&&2015 HIAST Collegiate Programming Contest F. Contestants Ranking【BFS+STL乱搞(map+vector)+优先队列】

timelimitpertest:1secondmemorylimitpertest:24megabytesinput:standardinputoutput:standardoutputAhmadisoneofthebeststudentsinHIAST,andalsoaverygoodproblemsSolver....

Java Sound Capture from Microphone working code

转载自:http://ganeshtiwaridotcomdotnp.blogspot.com/2011/12/java-sound-capture-from-microphone.htmlSound Capture/RecordfromMicrophoneandSave:workingjavasourcec...

hdu 2962 Trucking (最短路径)

TimeLimit:20000/10000MS(Java/Others)    MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):1692    AcceptedSubmissi...

Linking a C++ DLL 引发LNK1120和LNK2019问题的解决方案

背景:MFC中一个projectApp需引用另一个projectDll中的其中一个类的方法。错误信息:errorLNK1120:1unresolvedexternalserrorLNK2019:unresolvedexternalsymbol"public:staticvoid__cdeclmyLog::Test(vo...
首页上一页...1011121314...下一页尾页