热门标签 | HotTags
当前位置:  开发笔记 > Android > 正文

NDK数据结构之队列与栈等的实现

这篇文章主要介绍了NDK数据结构之队列与栈等的实现的相关资料,希望通过本文大家能理解掌握这部分内容,需要的朋友可以参考下

NDK 数据结构之队列与栈等的实现

com_tz_ndk_cpp_NDKCpp.h

/* DO NOT EDIT THIS FILE - it is machine generated */ 
#include  
/* Header for class com_tz_ndk_cpp_NDKCpp */ 
 
#ifndef _Included_com_tz_ndk_cpp_NDKCpp 
#define _Included_com_tz_ndk_cpp_NDKCpp 
#ifdef __cplusplus 
extern "C" { 
#endif 
/* 
 * Class:   com_tz_ndk_cpp_NDKCpp 
 * Method:  callCppTest 
 * Signature: ()V 
 */ 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppQueue 
 (JNIEnv *, jobject); 
 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppQueuePriority 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppStack 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppList 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppListDelete 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppListInsert 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppSet 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppSetReverse 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppSetSort 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppSetFind 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppMultiSet 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppMap 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppMapDelete 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppMapFind 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppMultiMap 
    (JNIEnv *, jobject); 
 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppVectorCopy 
    (JNIEnv *, jobject); 
 
#ifdef __cplusplus 
} 
#endif 
#endif 

com_tz_ndk_cpp_NDKCpp.cpp

#include  
#include  
#include  
#include "com_tz_ndk_cpp_NDKCpp.h" 
 
using namespace std; 
 
//1.C++语言:queue队列-基本使用 
#include  
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppQueue 
    (JNIEnv *, jobject){ 
  //初始化 
  queue q; 
  //添加元素 
  q.push('A'); 
  q.push('B'); 
  q.push('C'); 
  //添加头部 
//  q.front() = 'z'; 
  //添加尾部 
//  q.back() = 'D'; 
 
  //删除操作 
  while (!q.empty()){ 
    __android_log_print(ANDROID_LOG_INFO,"main","值: %c",q.front()); 
    //删除 
    q.pop(); 
  } 
} 
 
 
//2.C++语言:queue队列-优先级 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppQueuePriority 
    (JNIEnv *, jobject){ 
  //2.1 添加元素(默认是按照添加的顺序排列) 
//  queue q; 
//  q.push(10); 
//  q.push(50); 
//  q.push(20); 
//  q.push(5); 
//  //打印 
//  while (!q.empty()){ 
//    __android_log_print(ANDROID_LOG_INFO,"main","值: %d",q.front()); 
//    q.pop(); 
//  } 
 
  //2.2 最大值优先级队列(从大到小排列) 
//  priority_queue pq1; 
//  pq1.push(10); 
//  pq1.push(50); 
//  pq1.push(20); 
//  pq1.push(5); 
//  while (!pq1.empty()){ 
//    __android_log_print(ANDROID_LOG_INFO,"main","值: %d",pq1.top()); 
//    pq1.pop(); 
//  } 
 
  //2.3 最小值优先级队列 
  //注意:不同额编译器对语法检查有差别 
  //在AS中进行NDK开发>>符号认为运算符,所以为了避免出现这样的情况,请用空格分离'> >' 
  priority_queue,greater > pq1; 
  pq1.push(10); 
  pq1.push(50); 
  pq1.push(20); 
  pq1.push(5); 
  while (!pq1.empty()){ 
    __android_log_print(ANDROID_LOG_INFO,"main","值: %d",pq1.top()); 
    pq1.pop(); 
  } 
} 
 
 
 
//3.C++语言:stack栈-基本使用 
#include  
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppStack 
    (JNIEnv *, jobject){ 
  stack st; 
  st.push(10); 
  st.push(20); 
  st.push(30); 
 
  while (!st.empty()){ 
    __android_log_print(ANDROID_LOG_INFO,"main","值: %d",st.top()); 
    st.pop(); 
  } 
} 
 
 
//4.C++语言:list-基本使用 
#include  
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppList 
    (JNIEnv *, jobject){ 
  list lt; 
  //从头部添加 
  lt.push_front(10); 
  lt.push_front(20); 
  lt.push_front(30); 
  //从尾部添加 
  lt.push_back(40); 
  lt.push_back(50); 
  lt.push_back(60); 
 
  //循环遍历 
  for (list::iterator it = lt.begin() ; it != lt.end() ; it++){ 
    __android_log_print(ANDROID_LOG_INFO,"main","值:%d",*it); 
  } 
 
  list::iterator it = lt.begin(); 
  //连续相加允许(++) 
  //支持'++'、'--'运算符 
  it++; 
  it--; 
  //注意:不支持间断 
  //不支持'+'、'-'运算度 
//  it = it - 1; 
 
} 
 
 
//5.C++语言:list-删除 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppListDelete 
    (JNIEnv *, jobject){ 
  list lt; 
  //从头部添加 
  lt.push_front(10); 
  lt.push_front(20); 
  lt.push_front(30); 
  //从尾部添加 
  lt.push_back(40); 
  lt.push_back(50); 
  lt.push_back(60); 
 
  //方式一 
//  list::iterator it = lt.begin(); 
//  it++; 
//  //删除:删除第二个元素 
//  lt.erase(it); 
 
  //方式二 
  //删除第二个元素(直接根据内容删除) 
//  lt.remove(20); 
 
  //方式三:区间删除 
  //开始位置 
  list::iterator it_begin = lt.begin(); 
  //结束位置 
  list::iterator it_end = lt.begin(); 
  it_end++; 
  it_end++; 
  //删除元素(如果已经被删除的元素不能够在删除) 
  lt.erase(it_begin,it_end); 
 
  //循环遍历 
  for (list::iterator it = lt.begin() ; it != lt.end() ; it++){ 
    __android_log_print(ANDROID_LOG_INFO,"main","值:%d",*it); 
  } 
} 
 
 
 
//6.C++语言:list-插入 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppListInsert 
    (JNIEnv *, jobject){ 
  list lt; 
  //从尾部添加 
  lt.push_back(40); 
  lt.push_back(50); 
  lt.push_back(60); 
 
  //插入 
  lt.insert(lt.begin(),30); 
  //循环遍历 
  for (list::iterator it = lt.begin() ; it != lt.end() ; it++){ 
    __android_log_print(ANDROID_LOG_INFO,"main","值:%d",*it); 
  } 
} 
 
 
//7.C++语言:set-基本使用(元素唯一)-默认从小到大排列 
//特点一:元素唯一 
//特点二:默认从小到大排列 
#include  
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppSet 
    (JNIEnv *, jobject){ 
  set st; 
  st.insert(40); 
  st.insert(10); 
  st.insert(30); 
  st.insert(20); 
 
  //删除 
  set::iterator it = st.begin(); 
  st.erase(it); 
 
  for (set::iterator it = st.begin() ; it != st.end() ; it++){ 
    __android_log_print(ANDROID_LOG_INFO,"main","值:%d",*it); 
  } 
 
} 
 
 
//8.C++语言:set-基本使用(元素唯一)-从大到小排列 
//set> 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppSetReverse 
    (JNIEnv *, jobject){ 
  set > st; 
  st.insert(40); 
  st.insert(10); 
  st.insert(30); 
  st.insert(20); 
 
 
  for (set::iterator it = st.begin() ; it != st.end() ; it++){ 
    __android_log_print(ANDROID_LOG_INFO,"main","值:%d",*it); 
  } 
} 
 
 
 
//9.C++语言:set-自定义排序规则 
//需求:根据学生的成绩进行排序 
class Student{ 
private: 
  char* name; 
  int score; 
public: 
  Student(char* name,int score){ 
    this->name = name; 
    this->score = score; 
  } 
  int getScore(){ 
    return this->score; 
  } 
  void printStudent(){ 
    __android_log_print(ANDROID_LOG_INFO,"main","姓名: %s, 成绩: %d",this->name,this->score); 
  } 
}; 
//仿函数 
struct Soft{ 
  //方式一:不写常量 
//  bool operator()(Student &left,Student &right){ 
//    return left.getScore() (left); 
    Student stu_right = const_cast(right); 
    return stu_left.getScore()  st; 
  st.insert(Student("小宇",50)); 
  st.insert(Student("梦想",59)); 
  st.insert(Student("song",55)); 
  st.insert(Student("远方",58)); 
  st.insert(Student("石桥中化妖",40)); 
 
  for (set::iterator it = st.begin() ; it != st.end() ; it++){ 
    Student stu = const_cast(*it); 
    stu.printStudent(); 
  } 
 
} 
 
//10.C++语言:set-查找 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppSetFind 
    (JNIEnv *, jobject){ 
  set st; 
  st.insert(10); 
  st.insert(20); 
  st.insert(30); 
  st.insert(40); 
  st.insert(50); 
  st.insert(60); 
  st.insert(70); 
 
  //方式一 
  //查找等于30元素 
  //st.find(2); 
 
  //方式二 
  //查找等于或者小余35元素 
  //如果存在你输入的值30,那么就返回当前值30(例如:30) 
  //如果不存在你查找的值31,那么返回大于31的最近的一个元素指针 
  set::iterator it_lower = st.lower_bound(31); 
  __android_log_print(ANDROID_LOG_INFO,"main","查找结果: %d",*it_lower); 
 
  //如果存在你查找的值30,那么就返回大于30最近的一个元素指针40 
  //如果不存在你查找的值31,那么就返回大于31最近的一个元素的指针40 
  set::iterator it_upper = st.upper_bound(31); 
  __android_log_print(ANDROID_LOG_INFO,"main","查找结果: %d",*it_upper); 
 
  //方式三:既要返回最小也要最大 
  pair::iterator,set::iterator> p = st.equal_range(30); 
  //获取返回的元素 
  __android_log_print(ANDROID_LOG_INFO,"main","小: %d",*p.first); 
  __android_log_print(ANDROID_LOG_INFO,"main","大: %d",*p.second); 
 
} 
 
 
//11.C++语言:multiset-基本使用 
//允许存储重复元素 
//默认升序排列 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppMultiSet 
    (JNIEnv *, jobject){ 
  //升序 
//  multiset mst; 
//  mst.insert(10); 
//  mst.insert(20); 
//  mst.insert(30); 
//  mst.insert(10); 
// 
//  for (multiset::iterator it = mst.begin() ; it != mst.end() ; it++){ 
//    __android_log_print(ANDROID_LOG_INFO,"main","值: %d",*it); 
//  } 
 
  //降序 
//  multiset > mst; 
//  mst.insert(10); 
//  mst.insert(20); 
//  mst.insert(30); 
//  mst.insert(10); 
// 
//  for (multiset::iterator it = mst.begin() ; it != mst.end() ; it++){ 
//    __android_log_print(ANDROID_LOG_INFO,"main","值: %d",*it); 
//  } 
 
  //自定义排序方式 
  multiset mst; 
  mst.insert(Student("小宇",50)); 
  mst.insert(Student("梦想",59)); 
  mst.insert(Student("song",55)); 
  mst.insert(Student("远方",58)); 
  mst.insert(Student("石桥中化妖",40)); 
  mst.insert(Student("Dream",40)); 
  for (multiset::iterator it = mst.begin() ; it != mst.end() ; it++){ 
    Student stu = const_cast(*it); 
    stu.printStudent(); 
  } 
} 
 
 
 
//12.C++语言:map-基本使用 
#include  
#include  
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppMap 
    (JNIEnv *, jobject){ 
  map mp; 
  //方式一:插入数据pair 
  mp.insert(pair(01,"陈国军")); 
  mp.insert(pair(02,"Mr.Sunday")); 
  mp.insert(pair(03,"Studio")); 
  mp.insert(pair(04,"余祚宁")); 
 
  //方式二:如果key存在,那么就不添加同时不覆盖,如果不存在,就添加 
  pair::iterator, bool> result = mp.insert(map::value_type(04,"相约98")); 
  if(result.second){ 
    __android_log_print(ANDROID_LOG_INFO,"main","添加成功!"); 
  }else{ 
    __android_log_print(ANDROID_LOG_INFO,"main","已存在,添加失败!"); 
  } 
 
  //方式三: 
  mp.insert(make_pair(05,"定定")); 
 
  //方式四:如果key存在,重复添加会覆盖,如果不存在,那就直接添加 
  mp[5] = "石桥中化妖"; 
  mp[6] = "定定"; 
 
  for (map::iterator it = mp.begin() ; it != mp.end() ; it++){ 
    //获取key:it->first 
    __android_log_print(ANDROID_LOG_INFO,"main","key: %d",it->first); 
    //获取value:it->second 
    __android_log_print(ANDROID_LOG_INFO,"main","value: %s",it->second.c_str()); 
  } 
 
} 
 
 
 
//13.C++语言:map-删除 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppMapDelete 
    (JNIEnv *, jobject){ 
  map mp; 
  mp.insert(pair(01,"陈国军")); 
  mp.insert(pair(02,"Mr.Sunday")); 
  mp.insert(pair(03,"Studio")); 
  mp.insert(pair(04,"余祚宁")); 
 
  //删除 
  map::iterator it = mp.begin(); 
  mp.erase(it); 
 
  //打印 
  for (map::iterator it = mp.begin() ; it != mp.end() ; it++){ 
    //获取key:it->first 
    __android_log_print(ANDROID_LOG_INFO,"main","key: %d",it->first); 
    //获取value:it->second 
    __android_log_print(ANDROID_LOG_INFO,"main","value: %s",it->second.c_str()); 
  } 
} 
 
 
 
//14.C++语言:map-查找(equal_range) 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppMapFind 
    (JNIEnv *, jobject){ 
  map mp; 
  mp.insert(pair(01,"陈国军")); 
  mp.insert(pair(02,"Mr.Sunday")); 
  mp.insert(pair(03,"Studio")); 
  mp.insert(pair(04,"余祚宁")); 
 
  //获取大于或者等于2的元素 
  pair::iterator,map::iterator> p = mp.equal_range(2); 
  //判断是否存在元素 
  if(p.first != mp.end()){ 
    //等于2 
    //获取key:it->first 
    __android_log_print(ANDROID_LOG_INFO,"main","key: %d",p.first->first); 
    //获取value:it->second 
    __android_log_print(ANDROID_LOG_INFO,"main","value: %s",p.first->second.c_str()); 
 
    //大于2元素 
    //获取key:it->first 
    __android_log_print(ANDROID_LOG_INFO,"main","key: %d",p.second->first); 
    //获取value:it->second 
    __android_log_print(ANDROID_LOG_INFO,"main","value: %s",p.second->second.c_str()); 
  } 
} 
 
 
 
//15.C++语言:multimap-一对多 
//需求:一个用户对应多个订单 
class Order{ 
private: 
  char* name; 
  int num; 
public: 
  Order(char* name,int num){ 
    this->name = name; 
    this->num = num; 
  } 
  void printOrder(){ 
    __android_log_print(ANDROID_LOG_INFO,"main","订单名称:%s, 订单号:%d",this->name,this->num); 
  } 
}; 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppMultiMap 
    (JNIEnv *, jobject){ 
 
  multimap mst; 
  mst.insert(make_pair("陈国军",Order("男士外套",01))); 
  mst.insert(make_pair("陈国军",Order("户外跑鞋",02))); 
 
  mst.insert(make_pair("梦想",Order("女士外套",03))); 
  mst.insert(make_pair("梦想",Order("女士高跟鞋",02))); 
 
  mst.insert(make_pair("Dream",Order("女士纱衣",03))); 
  mst.insert(make_pair("Dream",Order("女士布鞋",02))); 
  mst.insert(make_pair("Dream",Order("女士外套",02))); 
  mst.insert(make_pair("Dream",Order("女士裤子",02))); 
 
  //遍历 
//  for (multimap::iterator it = mst.begin() ; it != mst.end() ; it++){ 
//    //获取key:it->first 
//    __android_log_print(ANDROID_LOG_INFO,"main","key: %s",it->first.c_str()); 
//    //获取value:it->second 
//    Order order = const_cast(it->second); 
//    order.printOrder(); 
//  } 
 
 
  //需求:只获取"梦想"订单 
  //获取订单的数量 
  int count = mst.count("梦想"); 
  //打印"梦想"订单:找到 
  multimap::iterator it = mst.find("梦想"); 
  //循环遍历打印 
  //计数 
  int i = 0; 
  while (it != mst.end() && i first.c_str()); 
    Order order = const_cast(it->second); 
    order.printOrder(); 
    i++; 
    it++; 
  } 
} 
 
 
 
//16.C++语言:vector-浅拷贝和深拷贝 
class User{ 
private: 
  char* name; 
  int age; 
public: 
  //浅拷贝(默认就是浅拷贝) 
  User(char* name,int age){ 
    //动态分配内存 
    this->name = new char[strlen(name)+1]; 
    strcpy(this->name,name); 
 
    this->age = age; 
  } 
  ~User(){ 
    if(this->name != NULL){ 
      delete[] this->name; 
      this->name = NULL; 
      this->age = 0; 
    } 
  } 
  void printUser(){ 
    __android_log_print(ANDROID_LOG_INFO,"main","名称:%s, 年龄: %d",this->name,this->age); 
  } 
 
  //深拷贝 
  User(const User &user){ 
    //先释放内存 
    if(this->name != NULL){ 
      delete[] this->name; 
      this->name = NULL; 
      this->age = 0; 
    } 
    //动态分配内存 
    this->name = new char[strlen(user.name)+1]; 
    strcpy(this->name,user.name); 
    this->age = user.age; 
  } 
 
  User& operator=(User &user){ 
    if(this->name != NULL){ 
      delete[] this->name; 
      this->name = NULL; 
      this->age = 0; 
    } 
    //动态分配内存 
    this->name = new char[strlen(user.name)+1]; 
    strcpy(this->name,user.name); 
    this->age = user.age; 
    return *this; 
  } 
 
}; 
//class User{ 
//private: 
//  string* name; 
//  int age; 
//public: 
//  //浅拷贝(默认就是浅拷贝) 
//  User(string name,int age){ 
//    //动态分配内存 
//    this->name = new string(const_cast(name)); 
//    this->age = age; 
//  } 
//  ~User(){ 
//    if(this->name != NULL){ 
//      delete this->name; 
//      this->name = NULL; 
//      this->age = 0; 
//    } 
//  } 
//  void printUser(){ 
//    __android_log_print(ANDROID_LOG_INFO,"main","名称:%s, 年龄: %d",this->name,this->age); 
//  } 
// 
//  //深拷贝 
//  User(const User &user){ 
//    //先释放内存 
//    if(this->name != NULL){ 
//      delete this->name; 
//      this->name = NULL; 
//      this->age = 0; 
//    } 
//    //动态分配内存 
//    this->name = new string(const_cast(user.name)); 
//    this->age = age; 
//  } 
// 
//  User& operator=(User &user){ 
//    if(this->name != NULL){ 
//      delete this->name; 
//      this->name = NULL; 
//      this->age = 0; 
//    } 
//    //动态分配内存 
//    this->name = new string(const_cast(user.name)); 
//    this->age = age; 
//    return *this; 
//  } 
// 
////}; 
JNIEXPORT void JNICALL Java_com_tz_ndk_cpp_NDKCpp_callCppVectorCopy 
    (JNIEnv *, jobject){ 
  vector vt; 
  User user("石桥中化妖",18); 
  //实参作为形参,需要调用拷贝函数,然后默认是浅拷贝 
  vt.push_back(user); 
 
  //解决方案:深拷贝 
  for (vector::iterator it = vt.begin() ; it != vt.end() ; it++){ 
    User order = const_cast(*it); 
    order.printUser(); 
  } 
 
  //作业:string如何深拷贝(稍微麻烦一点) 
} 


如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!


推荐阅读
  • 深入理解 Oracle 存储函数:计算员工年收入
    本文介绍如何使用 Oracle 存储函数查询特定员工的年收入。我们将详细解释存储函数的创建过程,并提供完整的代码示例。 ... [详细]
  • 本文总结了2018年的关键成就,包括职业变动、购车、考取驾照等重要事件,并分享了读书、工作、家庭和朋友方面的感悟。同时,展望2019年,制定了健康、软实力提升和技术学习的具体目标。 ... [详细]
  • 在计算机技术的学习道路上,51CTO学院以其专业性和专注度给我留下了深刻印象。从2012年接触计算机到2014年开始系统学习网络技术和安全领域,51CTO学院始终是我信赖的学习平台。 ... [详细]
  • CSS 布局:液态三栏混合宽度布局
    本文介绍了如何使用 CSS 实现液态的三栏布局,其中各栏具有不同的宽度设置。通过调整容器和内容区域的属性,可以实现灵活且响应式的网页设计。 ... [详细]
  • Linux 系统启动故障排除指南:MBR 和 GRUB 问题
    本文详细介绍了 Linux 系统启动过程中常见的 MBR 扇区和 GRUB 引导程序故障及其解决方案,涵盖从备份、模拟故障到恢复的具体步骤。 ... [详细]
  • 本文介绍了如何使用jQuery根据元素的类型(如复选框)和标签名(如段落)来获取DOM对象。这有助于更高效地操作网页中的特定元素。 ... [详细]
  • 本文将详细介绍如何使用剪映应用中的镜像功能,帮助用户轻松实现视频的镜像效果。通过简单的步骤,您可以快速掌握这一实用技巧。 ... [详细]
  • 本文介绍如何在 Xcode 中使用快捷键和菜单命令对多行代码进行缩进,包括右缩进和左缩进的具体操作方法。 ... [详细]
  • 在Linux系统中配置并启动ActiveMQ
    本文详细介绍了如何在Linux环境中安装和配置ActiveMQ,包括端口开放及防火墙设置。通过本文,您可以掌握完整的ActiveMQ部署流程,确保其在网络环境中正常运行。 ... [详细]
  • 本文介绍了一款用于自动化部署 Linux 服务的 Bash 脚本。该脚本不仅涵盖了基本的文件复制和目录创建,还处理了系统服务的配置和启动,确保在多种 Linux 发行版上都能顺利运行。 ... [详细]
  • Android 渐变圆环加载控件实现
    本文介绍了如何在 Android 中创建一个自定义的渐变圆环加载控件,该控件已在多个知名应用中使用。我们将详细探讨其工作原理和实现方法。 ... [详细]
  • 如何在WPS Office for Mac中调整Word文档的文字排列方向
    本文将详细介绍如何使用最新版WPS Office for Mac调整Word文档中的文字排列方向。通过这些步骤,用户可以轻松更改文本的水平或垂直排列方式,以满足不同的排版需求。 ... [详细]
  • 本文总结了在使用Ionic 5进行Android平台APK打包时遇到的问题,特别是针对QRScanner插件的改造。通过详细分析和提供具体的解决方法,帮助开发者顺利打包并优化应用性能。 ... [详细]
  • 理解存储器的层次结构有助于程序员优化程序性能,通过合理安排数据在不同层级的存储位置,提升CPU的数据访问速度。本文详细探讨了静态随机访问存储器(SRAM)和动态随机访问存储器(DRAM)的工作原理及其应用场景,并介绍了存储器模块中的数据存取过程及局部性原理。 ... [详细]
  • 360SRC安全应急响应:从漏洞提交到修复的全过程
    本文详细介绍了360SRC平台处理一起关键安全事件的过程,涵盖从漏洞提交、验证、排查到最终修复的各个环节。通过这一案例,展示了360在安全应急响应方面的专业能力和严谨态度。 ... [详细]
author-avatar
真个田_707
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有