05 2019 档案
摘要:<application android:theme="@style/Theme.AppCompat.Light.NoActionBar">
阅读全文
摘要:1:设置清单文件<activity android:name=".MainActivity" android:screenOrientation="landscape"//设置启动即横屏 android:configChanges="orientation|keyboardHidden|screen
阅读全文
摘要:src = $(wildcard ./*.c) obj = $(patsubst %.c, %.o, $(src)) target=t $(target):$(obj) gcc $^ -o $@ %.o:%.c gcc -c $< -o $@.PHONY:clean clean: rm *.o $(target) -f
阅读全文
摘要:void addNode(NODE* pNode){ enum pflag flag; if(root==NULL){ root=pNode; return; } NODE* temp=root; NODE* proot=null; while(true){ if(temp->value>pNode-...
阅读全文
摘要:package com.lb; import java.util.ArrayList; import java.util.List; import java.util.concurrent.locks.Condition; import java.util.concurrent.locks.ReentrantLock; public class test { private Reentra...
阅读全文
摘要:package com.lb; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.BlockingQueue; public class ProductConsumer { private BlockingQueue queue = null; private boolean flag ...
阅读全文
摘要:package com.lb; import java.io.IOException;import java.io.PipedInputStream;import java.io.PipedOutputStream;import java.util.Arrays; public class Test
阅读全文
摘要:git add . #添加全部文件到暂存区 ,git add file, git commit -m "信息" git ls-files -s 查看暂存区文件 git ls-tree master 查看master 分区 文件 git rm file 删除工作目录,跟暂存区文件。 git check
阅读全文

浙公网安备 33010602011771号