C同事问了我这个问题。 使用下列这段代码extend UI5标准的控件。 问题1:为什么new 一个JerryButton时,line 35会触发? var oJerryButton = new JerryButton({ application: oApplication } ); 答案: deb ...
分类:
其他好文 时间:
2020-03-03 15:10:39
阅读次数:
73
例子 实现一个计算器 #import "CalcuteManger.h" @implementation CalcuteManger -(CalcuteManger *(^)(NSInteger))add{ return ^(NSInteger num){ _result+=num; return ...
分类:
移动开发 时间:
2020-03-01 14:47:23
阅读次数:
92
Paper——SIGCOMM 17 : Reading SketchVisor Robust Network Measurement for Sofeware Packet Processing A Partial User-space Implementation of SketchVisor's ...
分类:
其他好文 时间:
2020-02-25 18:13:19
阅读次数:
81
由于工作过程中经常需要查看IOS的Objective-C代码,遂把一些常见的、有疑问的OC语法列出,方便之后会看,提升效率。Objective-C中的@语法@interface告诉编译器,我要声明一个新类,包含了类的属性和方法,以@end结尾;@implementation告诉编译器,这是某个类的具... ...
分类:
移动开发 时间:
2020-02-25 12:48:15
阅读次数:
89
aes加密定位到:fridaJava.perform(function(){varhook=Java.use("com.forward.eip.app.util.a.a");hook.AES_Encode.implementation=function(arg1,arg2){console.log("content:",arg1);console.log("key:",arg2);varres=t
分类:
其他好文 时间:
2020-02-22 23:33:45
阅读次数:
85
mbcrc.c #include <stdio.h> /* * FreeModbus Libary: A portable Modbus implementation for Modbus ASCII/RTU. * Copyright (c) 2006 Christian Walter <wolti ...
分类:
数据库 时间:
2020-02-19 17:27:08
阅读次数:
122
AS 3.X创建的项目,在低版本Android 中webview导致程序崩溃。 解决:修改build.gradle中为 implementation 'androidx.appcompat:appcompat:1.2.0-alpha02' 来源:https://stackoverflow.com/q ...
分类:
移动开发 时间:
2020-02-18 15:00:00
阅读次数:
106
变量捕获会在blcok结构体内部生成一个变量已来存储捕获到的指针或者值 #import "Person.h" @implementation Person /* oc每个函数后面都自带 (Person * self, SEL _cmd) -(void)test:(Person * self, SEL ...
分类:
移动开发 时间:
2020-02-17 00:49:59
阅读次数:
101
昨天学习了AndroidViewModel,但是我根据视频上讲解,根据所讲用例,在添加依赖得时候一直报错,后来我请教大佬,他告诉我说是,因为网络得问题,国外得一些依赖有可能下不下来,所以可以下载阿里云的依赖。 implementation 'androidx.lifecycle:lifecycle- ...
分类:
移动开发 时间:
2020-02-14 18:50:39
阅读次数:
96
本文基于 Picasso 2.71828 版本 。本文不仅讲用法,更主要讲的是错误的用法。而具体的源码分析在其他文章中。 implementation 'com.squareup.picasso:picasso:2.71828' 基本用法 从 assets 中加载 Picasso.get() .lo ...
分类:
其他好文 时间:
2020-02-01 21:45:27
阅读次数:
114