摘要:
1. 为什么需要消息机制? 首先我们知道Android中有两个特别重要的机制,一个是Binder,另一个是消息机制(Handler + Looper + MessageQueue)。毕竟Android是以消息驱动的方式来进行交互的。 为什么需要在android中添加这样的消息机制呢? 有时候我们需要 阅读全文
摘要:
一、配置 1. 配置用户名和邮件地址: Git config –global user.name yourname git config –global user.email youremail@xxx.com 2. 查看已有的配置信息 git config –list 二、常用命令 1. 初始化 阅读全文
摘要:
Activity的主要作用是展示一个界面并和用户交互,它扮演的是一种前台界面的角色。 Service是一种计算型组件,用于在后台执行一系列计算任务。Service有两种状态:启动状态和绑定状态。启动状态时的Service不需要与外界交互,绑定状态的Service可以方便的和Service组件进行通信 阅读全文
摘要:
一.如何理解hashCode的作用: 以java.lang.Object来理解,JVM每new一个Object,它都会将这个Object丢到一个Hash哈希表中去,这样的话,下次做Object的比较或者取这个对象的时候,它会根据对象的hashcode再从Hash表中取这个对象。这样做的目的是提高取对 阅读全文
摘要:
#include #include "math.h" double e2h(double e) { return 0.5555*(e-10.0); } double D2e(double D) { return 6.11*exp(5417.7530*((1/273.16)-(1/(D+273.16)))); } double e2D(double e) { ret... 阅读全文
摘要:
#include #include using namespace std; int main() { int n=12; float money,sum=0; for(int i=0;i>money; sum+=money; } printf("$%.2f", sum/12); return 0; } 阅读全文
摘要:
这道题的关键也就两句话 其余也没什么好说的 阅读全文
摘要:
这个题就用stack来解决啦,如果一个用例中的couple可以全部移走,则将环拆成链后最后的一对couple依然相邻,可以全部移走,因此将环拆成一个链来解决不影响结果; 阅读全文
摘要:
//就是一个简单的字符串配对~~用map来解决很easy#include #include #include using namespace std; int main() { int n; while (cin>>n && n!=0) { string ip , name; string tmp; map m; ... 阅读全文
摘要:
1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 bool cmp(string a, string b); 8 bool match(string a, string b); 9 10 11 int main(void) { 12 int testSize, couple... 阅读全文