摘要:
按照github的步骤一步步来的时候,最后一步出现问题, ld: cannot link directly with dylib/framework, your binary is not an allowed client of /usr/lib/libcrypto.dylib for archi 阅读全文
摘要:
//对arm64比较友好,arm32的可能崩溃 function call_1CFF0(input_str) { var base_hello_jni = Module.findBaseAddress("libhello-jni.so"); var sub_1CFF0 = new NativeFun 阅读全文
摘要:
1.迭代的方式 def reverse(self, head): if head is None or head.next is None: return head cur = head pre = None while cur: tmp = cur.next cur.next = pre pre 阅读全文