/*
线性表得基本操作
*/
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#define MaxSize 100
#define LocateElem
#define ListDelete
#define ListInsert
#define InitLis……继续阅读 »
8年前 (2017-04-13) 2573浏览
0个赞
怎么 就是只能拿到了数组里的最后一张
解决方案
6
你的cell都是同一个对象,当然只能拿到最后一张了
假如是放在tableview里,需要在
– (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPat……继续阅读 »
8年前 (2017-04-13) 1193浏览
0个赞
安卓6.0的手机,播放视频的时候出现异常,能否是Vitamio的兼容问题?
解决方案
40
你本人测下呗 酷六网 使用 Vitamio 做的, 你可以下一个 老版本的 酷六网 apk 文件 在 6.0手机上泡一下, 假如没事 说明不是 兼容问题
你用的什么手机
……继续阅读 »
8年前 (2017-04-13) 1655浏览
0个赞
#include<stdio.h>
const int red=0;
const int yellow=1;
const int green=2;
int main(int argc,char const *argv[]){
int color=-1;
char *colorName=NULL;
printf("输入你喜欢的颜色代码:"……继续阅读 »
8年前 (2017-04-13) 1280浏览
0个赞
下面代码运行输出不是本人想要的结果而是‘%@@’ 这个是什么意思?
#include<stdio.h>
enum COLOR {
RED,YELLOW,GREEN
};
int main(int argc,char const *argv[]){
int color=-1;
char *colorName=NULL;
printf("输……继续阅读 »
8年前 (2017-04-13) 1238浏览
0个赞
[Warning] initialization from incompatible pointer type
#include<stdio.h>
struct date{
int month;
int day;
int year;
};
int main(int argc,char const *argv[]){
struct dat……继续阅读 »
8年前 (2017-04-13) 1868浏览
0个赞
android 怎么实现QQ或微信 那种杀不死的服务呢 用小米的一键清理 也没杀死
解决方案
10
引用:
个人猜测会不会是小米有白名单,常用软件默认不杀死;
等高手解答
本人也觉得微信 QQ肯定在白名单里,原因是用的人比较多,要确保其功能的正常运行
同时腾讯本人也做了很多事情预防被杀。例如,启动两个service互启动,一个被杀会被另一……继续阅读 »
8年前 (2017-04-13) 2184浏览
0个赞
// 可变字符串的拼接和删除
NSMutableString *str = [[NSMutableString alloc] initWithString:@"天王盖地虎"];
[str appendString:@",宝塔镇河妖"]; // 无返回值的拼接字符串
NSString *str2 = [str ……继续阅读 »
8年前 (2017-04-13) 1264浏览
0个赞
CChartDateTimeAxis* pBottomAxis=m_ChartCtrl1.CreateDateTimeAxis(CChartCtrl::BottomAxis);
pBottomAxis->SetDiscrete(true);
CChartStandardAxis* pLeftAxis=m_ChartCtrl1.CreateStandar……继续阅读 »
8年前 (2017-04-13) 2994浏览
0个赞