入门客AI创业平台(我带你入门,你带我飞行)
博客笔记

			
				Unity中加入Android项目的Build步骤
Unity中加入Android项目的Build步骤 2015-01-20
转载请注明本文出自大苞米的博客(http://blog.csdn.net/a396901990),谢谢支持! 简介: 有的项目需要在Android中加入Unity功能,例如ANDROID应用中嵌入Uni
08
2017-03
安卓打包 进阶 配置文件解释 2017-03-08
ant.properties       ant 配置文件包含的是签名文件的信息  keystore的文件路径、密码、别名等信息                (新建的项目默认没有签名,这些
04
2014-08
Unity3D发布安卓时遇到的问题解决办法 2014-08-04
在用Unity3D发布安卓时遇到了两个问题,在此记录下解决办法: 第一个: 错误提示: Error building Player: UnityException: Bundle Identifier has not been set up co

			
				unity3d在菜单栏,一键设置Player setting及自动打包并设置apk的存储位置
unity3d在菜单栏,一键设置Player setting及自动打包并设置apk的存储位置 2017-09-15
项目进行中,领导要求能够进行一键设置Player settings及自动打包并设置apk的位置,所以自己就上网搜索了很多大神的文章.最后是完成了领导需要的功
27
2017-07
threeSum 2017-07-27
/** * Return an array of arrays of size *returnSize. * Note: The returned array must be malloced, assume caller calls free(). */ /* 解决思路: 先对数组进行升序排序
27
2016-06
THREE SUM 2016-06-27
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Note: The solution set must not contain duplicat
18
2018-03
SumThree 2018-03-18
public class SumThree { public static void main(String[] args) { // TODO Auto-generated method stub //12.通过终端输入 10 个整数,计算 10 个整数中所有能被 3 整除的数的合
11
2015-07
[LeetCode] Three Sum 2015-07-11
注意Two sum的思路是使用hashmap class Solution { public: vector threeSum(vector& nums) { sort(nums.begin(),nums.end()); vector vv; int n = nums.size(); for(int i =
10
2013-12
jstl判断List是否为空 2013-12-10
JSP页面开头要包含 从controller拿到List以后,jsp页面判断并展示:                 XXX                                      ${user}  
09
2015-02
jsp页面判断获得action传的list的是否为空或者list.size的长度 2015-02-09
--------这里就需要有standard.jar这个包 必须要导的两个包。 jsp页面判断获得action传的list的是否为空或者list.size的长度,就可以用fn这个标签: 这样