当前位置: 首页 > news >正文

微九州合作网站西安有那些做网站的公司好

微九州合作网站,西安有那些做网站的公司好,对于网站界面,jquery 上传wordpress目录 1 - Linux线程同步 1.1 - 条件变量 1.2 - 同步概念与竞态条件 1.3 - 条件变量函数 1.4 - 为什么pthread_cond_wait需要互斥量 1.5 - 条件变量使用规范 2 - 生产者消费者模型 2.1 - 为什么要使用生产者消费者模型 2.2 - 生产…目录 1 - Linux线程同步 1.1 - 条件变量 1.2 - 同步概念与竞态条件 1.3 - 条件变量函数 1.4 - 为什么pthread_cond_wait需要互斥量 1.5 - 条件变量使用规范 2 - 生产者消费者模型 2.1 - 为什么要使用生产者消费者模型 2.2 - 生产者消费者模型优点 2.3 - 基于BlockingQueue的生产者消费者模型 2.4 - C queue模拟阻塞队列的生产消费模型 2.5 - POSIX信号量 2.6 - 基于环形队列的生产消费模型 3 - 线程池 3.1 - 线程池概念 3.2 - 线程池应用场景 3.3 - 线程池示例 4 - 线程安全的单例模式 4.1 - 什么是单例模式 4.2 - 单例模式的特点 4.3 - 饿汉方式实现单例模式 4.4 - 懒汉方式实现单例模式 4.5 - 懒汉方式实现单例模式(线程安全版本) 5 - STL智能指针和线程安全 5.1 - STL中的容器是否是线程安全的 5.2 - 智能指针是否是线程安全的 1 - Linux线程同步 1.1 - 条件变量 当一个线程互斥地访问某个变量时它可能发现在其它线程改变状态之前它什么也做不了。例如一个线程访问队列时发现队列为空它只能等待直到其它线程将一个节点添加到队列中。这种情况就需要用到条件变量。 1.2 - 同步概念与竞态条件 同步在保证数据安全的前提下让线程能够按照某种特定的顺序访问临界资源从而有效避免饥饿问题叫做同步。竞态条件因为时序问题而导致程序异常我们称之为竞态条件。在线程场景下这种问题不难理解。 1.3 - 条件变量函数 初始化 int pthread_cond_init(pthread_cond_t* restrict cond, const pthread_condattr_t* restrict attr);参数 cond要初始化的条件变量 attrNULL销毁 int pthread_cond_destroy(pthread_cond_t* cond);等待条件满足 int pthread_cond_wait(pthread_cond_t* restrict cond, pthread_mutex_t* restrict mutex);参数 cond要在这个条件变量上等待 mutex互斥量 唤醒等待 int pthread_cond_broadcast(pthread_cond_t* cond); int pthread_cond_signal(pthread_cond_t* cond); 简单案例 #include stdio.h #include stdlib.h #include string.h #include unistd.h #include pthread.hpthread_cond_t cond; pthread_mutex_t mutex;void* r1(void* arg) {while (1) {pthread_cond_wait(cond, mutex);printf(活动\n);} }void* r2(void* arg) {while (1) {pthread_cond_signal(cond);sleep(1);} }int main(void) {pthread_t t1, t2;pthread_cond_init(cond, NULL);pthread_mutex_init(mutex, NULL);pthread_create(t1, NULL, r1, NULL);pthread_create(t2, NULL, r2, NULL);pthread_join(t1, NULL);pthread_join(t2, NULL);pthread_mutex_destroy(mutex);pthread_cond_destroy(cond); } [rootlocalhost linux]# ./a.out 活动 活动 活动 1.4 - 为什么pthread_cond_wait需要互斥量 条件等待是线程间同步的一种手段如果只有一个线程条件不满足一直等下去都不会满足所以必须要有一个线程通过某些操作改变共享变量使原先不满足的条件变得满足并且友好的通知等待在条件变量上的线程。条件不会无缘无故的突然变得满足必然会牵扯到共享数据的变化。所以一定要用互斥锁来保护。没有互斥锁就无法安全的获取和修改共享数据。 按照上面的说法设计出如下的代码先上锁发现条件不满足解锁然后等待在条件变量上就行了。 // 错误的设计 pthread_mutex_lock(mutex); while (condition_is_false) {pthread_mutex_unlock(mutex);//解锁之后等待之前条件可能已经满足信号已经发出但是该信号可能被错过pthread_cond_wait(cond);pthread_mutex_lock(mutex);} pthread_mutex_unlock(mutex); 由于解锁和等待不是原子操作。调用解锁之后pthread_cond_wait之前如果已经有其他线程获取到互斥量摒弃条件满足发送了信号那么pthread_cond_wait将错过这个信号可能会导致线程永远阻塞在这个pthread_cond_wait。所以解锁和等待必须是一个原子操作。int pthread_cond_wait(pthread_cond_t *condpthread_mutex_t *mutex)进入该函数后会去看条件量是否等于0等于0就把互斥量变成1直到cond_wait返回把条件量改成1把互斥量恢复成原样。 1.5 - 条件变量使用规范 等待条件代码 pthread_mutex_lock(mutex); while (条件为假pthread_cond_wait(cond, mutex); 修改条件 pthread_mutex_unlock(mutex); 给条件发送信号代码 pthread_mutex_lock(mutex); 设置条件为真 pthread_cond_signal(cond); pthread_mutex_unlock(mutex); 2 - 生产者消费者模型 2.1 - 为什么要使用生产者消费者模型 生产者消费者模式就是通过一个容器来解决生产者和消费者的强耦合问题。生产者和消费者彼此之间不直接通讯而通过阻塞队列来进行通讯所以生产者生产完数据之后不用等待消费者处理直接扔给阻塞队列消费者不找生产者索要数据而是直接从阻塞队列里取阻塞队列就相当于一个缓冲区平衡了生产者和消费者的处理能力。这个阻塞队列就是用来给生产者和消费者解耦的。 2.2 - 生产者消费者模型优点 解耦支持并发支持忙闲不均 2.3 - 基于BlockingQueue的生产者消费者模型 在多线程编程中阻塞队列(Blocking Queue)是一种常用于实现生产者和消费者模型的数据结构。其与普通的队列区别在于当队列为空时从队列获取元素的操作将会被阻塞直到队列中被放入了元素当队列满时往队列里存放元素的操作也会被阻塞直到有元素被从队列中取出(以上的操作都是基于不同的线程来说的线程在对阻塞队列进程操作时会被阻塞)。 2.4 - C queue模拟阻塞队列的生产消费模型 代码 #include iostream #include queue #include stdlib.h #include pthread.h#define NUM 8class BlockQueue { private:std::queueint q;int cap;pthread_mutex_t lock;pthread_cond_t full;pthread_cond_t empty;private:void LockQueue(){pthread_mutex_lock(lock);}void UnLockQueue(){pthread_mutex_unlock(lock);}void ProductWait(){pthread_cond_wait(full, lock);}void ConsumeWait(){pthread_cond_wait(empty, lock);}void NotifyProduct(){pthread_cond_signal(full);}void NotifyConsume(){pthread_cond_signal(empty);}bool IsEmpty(){return (q.size() 0 ? true : false);}bool IsFull(){return (q.size() cap ? true : false);}public:BlockQueue(int _cap NUM) :cap(_cap){pthread_mutex_init(lock, NULL);pthread_cond_init(full, NULL);pthread_cond_init(empty, NULL);}void PushData(const int data){LockQueue();while (IsFull()) {NotifyConsume();std::cout queue full, notifyconsume data, product stop. std::endl;ProductWait();}q.push(data);// NotifyConsume();UnLockQueue();}void PopData(int data){LockQueue();while (IsEmpty()) {NotifyProduct();std::cout queue empty, notifyproduct data, consume stop. std::endl;ConsumeWait();}data q.front();q.pop();// NotifyProduct();UnLockQueue();}~BlockQueue(){pthread_mutex_destroy(lock);pthread_cond_destroy(full);pthread_cond_destroy(empty);} };void* consumer(void* arg) {BlockQueue* bqp (BlockQueue*)arg;int data;for (; ; ) {bqp-PopData(data);std::cout Consume data done : data std::endl;} }//more faster void* producter(void* arg) {BlockQueue* bqp (BlockQueue*)arg;srand((unsigned long)time(NULL));for (; ; ) {int data rand() % 1024;bqp-PushData(data);std::cout Prodoct data done: data std::endl;// sleep(1);} }int main() {BlockQueue bq;pthread_t c, p;pthread_create(c, NULL, consumer, (void*)bq);pthread_create(p, NULL, producter, (void*)bq);pthread_join(c, NULL);pthread_join(p, NULL);return 0; } 2.5 - POSIX信号量 POSIX信号量和SystemV信号量作用相同都是用于同步操作达到无冲突的访问共享资源目的。但POSIX可以用于线程间同步。 初始化信号量 #include semaphore.h int sem_init(sem_t* sem, int pshared, unsigned int value);参数 pshared : 0 表示线程间共享非零表示进程间共享 value信号量初始值 销毁信号量 int sem_destroy(sem_t* sem);等待信号量 功能等待信号量会将信号量的值减 1 int sem_wait(sem_t * sem); //P() 发布信号量 功能发布信号量表示资源使用完毕可以归还资源了。将信号量值加 1。 int sem_post(sem_t * sem);//V() 生产者-消费者的例子是基于queue的其空间可以动态分配现在基于固定大小的环形队列重写这个程序(POSIX信号量)。 2.6 - 基于环形队列的生产消费模型 环形队列采用数组模拟用模运算来模拟环状特性。 环形结构起始状态和结束状态都是一样的不好判断为空或者为满所以可以通过加计数器或者标记位来判断满或者空。另外也可以预留一个空的位置作为满的状态。 但是现有的信号量这个计数器是简单的进行多进程间的同步过程。 #include iostream #include vector #include stdlib.h #include semaphore.h #include pthread.h#define NUM 16class RingQueue { private:std::vectorint q;int cap;sem_t data_sem;sem_t space_sem;int consume_step;int product_step;public:RingQueue(int _cap NUM) :q(_cap), cap(_cap){sem_init(data_sem, 0, 0);sem_init(space_sem, 0, cap);consume_step 0;product_step 0;}void PutData(const int data){sem_wait(space_sem); // Pq[consume_step] data;consume_step;consume_step % cap;sem_post(data_sem); //V}void GetData(int data){sem_wait(data_sem);data q[product_step];product_step;product_step % cap;sem_post(space_sem);}~RingQueue(){sem_destroy(data_sem);sem_destroy(space_sem);} };void* consumer(void* arg) {RingQueue* rqp (RingQueue*)arg;int data;for (; ; ) {rqp-GetData(data);std::cout Consume data done : data std::endl;sleep(1);} }//more faster void* producter(void* arg) {RingQueue* rqp (RingQueue*)arg;srand((unsigned long)time(NULL));for (; ; ) {int data rand() % 1024;rqp-PutData(data);std::cout Prodoct data done: data std::endl;// sleep(1);} }int main() {RingQueue rq;pthread_t c, p;pthread_create(c, NULL, consumer, (void*)rq);pthread_create(p, NULL, producter, (void*)rq);pthread_join(c, NULL);pthread_join(p, NULL);} 3 - 线程池 3.1 - 线程池概念 一种线程使用模式。线程过多会带来调度开销进而影响缓存局部性和整体性能。而线程池维护着多个线程等待着监督管理者分配可并发执行的任务。这避免了在处理短时间任务时创建与销毁线程的代价。线程池不仅能够保证内核的充分利用还能防止过分调度。可用线程数量应该取决于可用的并发处理器、处理器内核、内存、网络 sockets 等的数量。 3.2 - 线程池应用场景 需要大量的线程来完成任务且完成任务的时间比较短。 WEB服务器完成网页请求这样的任务使用线程池技术是非常合适的。因为单个任务小而任务数量巨大你可以想象一个热门网站的点击次数。 但对于长时间的任务比如一个Telnet连接请求线程池的优点就不明显了。因为Telnet会话时间比线程的创建时间大多了。对性能要求苛刻的应用比如要求服务器迅速响应客户请求。接受突发性的大量请求但不至于使服务器因此产生大量线程的应用。突发性大量客户请求在没有线程池情况下将产生大量线程虽然理论上大部分操作系统线程数目最大值不是问题短时间内产生大量线程可能使内存到达极限出现错误。 3.3 - 线程池示例 threadpool.hpp #ifndef __M_TP_H__ #define __M_TP_H__#include iostream #include queue #include pthread.h#define MAX_THREAD 5typedef bool (*handler_t)(int);class ThreadTask { private:int _data;handler_t _handler; public:ThreadTask() :_data(-1), _handler(NULL) {}ThreadTask(int data, handler_t handler) {_data data;_handler handler;}void SetTask(int data, handler_t handler) {_data data;_handler handler;}void Run() {_handler(_data);} };class ThreadPool { private:int _thread_max;int _thread_cur;bool _tp_quit;std::queueThreadTask* _task_queue;pthread_mutex_t _lock;pthread_cond_t _cond;private:void LockQueue() {pthread_mutex_lock(_lock);}void UnLockQueue() {pthread_mutex_unlock(_lock);}void WakeUpOne() {pthread_cond_signal(_cond);}void WakeUpAll() {pthread_cond_broadcast(_cond);}void ThreadQuit() {_thread_cur--;UnLockQueue();pthread_exit(NULL);}void ThreadWait() {if (_tp_quit) {ThreadQuit();}pthread_cond_wait(_cond, _lock);}bool IsEmpty() {return _task_queue.empty();}static void* thr_start(void* arg) {ThreadPool* tp (ThreadPool*)arg;while (1) {tp-LockQueue();while (tp-IsEmpty()) {tp-ThreadWait();}ThreadTask* tt;tp-PopTask(tt);tp-UnLockQueue();tt-Run();delete tt;}return NULL;}public:ThreadPool(int max MAX_THREAD) :_thread_max(max),_thread_cur(max),_tp_quit(false) {pthread_mutex_init(_lock, NULL);pthread_cond_init(_cond, NULL);}~ThreadPool() {pthread_mutex_destroy(_lock);pthread_cond_destroy(_cond);}bool PoolInit() {pthread_t tid;for (int i 0; i _thread_max; i) {int ret pthread_create(tid, NULL, thr_start,this);if (ret ! 0) {std::cout create pool thread error\n;return false;}}return true;}bool PushTask(ThreadTask* tt) {LockQueue();if (_tp_quit) {UnLockQueue();return false;}_task_queue.push(tt);WakeUpOne();UnLockQueue();return true;}bool PopTask(ThreadTask** tt) {*tt _task_queue.front();_task_queue.pop();return true;}bool PoolQuit() {LockQueue();_tp_quit true;UnLockQueue();while (_thread_cur 0) {WakeUpAll();usleep(1000);}return true;}}; #endif main.cpp bool handler(int data) {srand(time(NULL));int n rand() % 5;printf(Thread: %p Run Tast: %d--sleep %d sec\n, pthread_self(), data, n);sleep(n);return true; }int main() {int i;ThreadPool pool;pool.PoolInit();for (i 0; i 10; i) {ThreadTask* tt new ThreadTask(i, handler);pool.PushTask(tt);}pool.PoolQuit();return 0; } g -stdc0x test.cpp -o test -pthread -lrt 4 - 线程安全的单例模式 4.1 - 什么是单例模式 单例模式(Singleton Pattern)是一种设计模式旨在确保一个类只有一个实例并提供一个全局访问点来获取这个实例。这种模式常用于管理共享资源如配置信息、线程池、缓存等。单例模式的核心思想是控制对象的实例化过程使得在整个应用程序中只有一个实例存在并且所有对该实例的访问都通过同一个访问点进行。 4.2 - 单例模式的特点 唯一性单例模式确保一个类只有一个实例。这意味着在整个应用程序的生命周期中无论在何处调用该类的实例都将返回同一个对象。全局访问点单例模式提供了一个全局访问点通常是一个静态方法用于获取该类的唯一实例。这使得在程序的任何地方都能够方便地访问该实例。延迟初始化单例模式的实例通常在第一次被请求时才会创建这有助于节省资源。这种延迟初始化的特性也被称为懒加载(Lazy Initialization)。线程安全在多线程环境下单例模式需要确保其唯一性和全局访问的正确性。这通常通过同步机制来实现如使用锁或其他并发控制手段。控制实例化单例模式的构造函数通常是私有的这防止了外部代码通过常规的构造函数创建新的实例。可扩展性单例模式可以通过继承或其他方式进行扩展以满足不同的应用需求。资源管理单例模式常用于管理共享资源如数据库连接、线程池、配置信息等确保这些资源在整个应用程序中只有一个实例从而提高资源的使用效率和管理便利性。性能优化由于单例模式只创建一个实例因此可以减少内存开销和提高性能特别是在处理大量数据或频繁访问的对象时。简化代码结构单例模式可以简化代码结构因为它提供了一个单一的、全局的访问点使得代码的维护和理解更加容易。适用场景单例模式适用于那些在整个应用程序中只需要一个实例的场景如日志记录器、配置管理器、数据库连接池等。 4.3 - 饿汉方式实现单例模式 template typename T class Singleton {static T data; public:static T* GetInstance() {return data;} }; 只要通过Singleton这个包装类来使用T对象则一个进程中只有一个T对象的实例。 4.4 - 懒汉方式实现单例模式 template typename T class Singleton {static T* inst; public:static T* GetInstance() {if (inst NULL) {inst new T();}return inst;} }; 存在一个严重的问题线程不安全。 第一个调用GetInstance时如果两个线程同时调用可能会创建出两份T对象的实例。 但是后续再次调用就没有问题了。 4.5 - 懒汉方式实现单例模式(线程安全版本) // 懒汉模式, 线程安全 template typename T class Singleton {volatile static T* inst; // 需要设置 volatile 关键字, 否则可能被编译器优化.static std::mutex lock;public:static T* GetInstance() {if (inst NULL) { // 双重判定空指针, 降低锁冲突的概率, 提高性能.lock.lock(); // 使用互斥锁, 保证多线程情况下也只调用一次 new.if (inst NULL) {inst new T();}lock.unlock();}return inst;} }; 注意 加锁解锁的位置双重if判断避免不必要的锁竞争volatile关键字防止过度优化 5 - STL智能指针和线程安全 5.1 - STL中的容器是否是线程安全的 不是。 原因是STL的设计初衷是将性能挖掘到极致而一旦涉及到加锁保证线程安全会对性能造成巨大的影响。 而且对于不同的容器加锁方式的不同性能可能也不同(例如hash表的锁表和锁桶)。 因此STL默认不是线程安全。如果需要在多线程环境下使用往往需要调用者自行保证线程安全。 5.2 - 智能指针是否是线程安全的 对于unique_ptr由于只是在当前代码块范围内生效因此不涉及线程安全问题。 对于shared_ptr多个对象需要共用一个引用计数变量所以会存在线程安全问题。但是标准库实现的时候考虑到了这个问题基于原子操作(CAS)的方式保证shared_ptr能够高效原子的操作引用计数。 感谢各位大佬支持 互三啦
文章转载自:
http://www.morning.ktrh.cn.gov.cn.ktrh.cn
http://www.morning.dmzzt.cn.gov.cn.dmzzt.cn
http://www.morning.mcpby.cn.gov.cn.mcpby.cn
http://www.morning.fyxtn.cn.gov.cn.fyxtn.cn
http://www.morning.kqylg.cn.gov.cn.kqylg.cn
http://www.morning.wscfl.cn.gov.cn.wscfl.cn
http://www.morning.zlff.cn.gov.cn.zlff.cn
http://www.morning.dzdtj.cn.gov.cn.dzdtj.cn
http://www.morning.zztkt.cn.gov.cn.zztkt.cn
http://www.morning.hlrtzcj.cn.gov.cn.hlrtzcj.cn
http://www.morning.wgqtt.cn.gov.cn.wgqtt.cn
http://www.morning.rykw.cn.gov.cn.rykw.cn
http://www.morning.yhwxn.cn.gov.cn.yhwxn.cn
http://www.morning.mxcgf.cn.gov.cn.mxcgf.cn
http://www.morning.jjpk.cn.gov.cn.jjpk.cn
http://www.morning.rtlrz.cn.gov.cn.rtlrz.cn
http://www.morning.brbmf.cn.gov.cn.brbmf.cn
http://www.morning.qkdbz.cn.gov.cn.qkdbz.cn
http://www.morning.kwqqs.cn.gov.cn.kwqqs.cn
http://www.morning.qkdjq.cn.gov.cn.qkdjq.cn
http://www.morning.qttft.cn.gov.cn.qttft.cn
http://www.morning.rfpb.cn.gov.cn.rfpb.cn
http://www.morning.tgbx.cn.gov.cn.tgbx.cn
http://www.morning.fmjzl.cn.gov.cn.fmjzl.cn
http://www.morning.ntcmrn.cn.gov.cn.ntcmrn.cn
http://www.morning.mgskc.cn.gov.cn.mgskc.cn
http://www.morning.slysg.cn.gov.cn.slysg.cn
http://www.morning.rfkyb.cn.gov.cn.rfkyb.cn
http://www.morning.prmbn.cn.gov.cn.prmbn.cn
http://www.morning.gmplp.cn.gov.cn.gmplp.cn
http://www.morning.wknbc.cn.gov.cn.wknbc.cn
http://www.morning.qnzgr.cn.gov.cn.qnzgr.cn
http://www.morning.zxznh.cn.gov.cn.zxznh.cn
http://www.morning.lffgs.cn.gov.cn.lffgs.cn
http://www.morning.fgsqz.cn.gov.cn.fgsqz.cn
http://www.morning.zqwp.cn.gov.cn.zqwp.cn
http://www.morning.ttkns.cn.gov.cn.ttkns.cn
http://www.morning.bpp999.com.gov.cn.bpp999.com
http://www.morning.nwjd.cn.gov.cn.nwjd.cn
http://www.morning.rqjfm.cn.gov.cn.rqjfm.cn
http://www.morning.dfwkn.cn.gov.cn.dfwkn.cn
http://www.morning.lpzqd.cn.gov.cn.lpzqd.cn
http://www.morning.ygkb.cn.gov.cn.ygkb.cn
http://www.morning.cxnyg.cn.gov.cn.cxnyg.cn
http://www.morning.pggkr.cn.gov.cn.pggkr.cn
http://www.morning.dlurfdo.cn.gov.cn.dlurfdo.cn
http://www.morning.jycr.cn.gov.cn.jycr.cn
http://www.morning.zlqyj.cn.gov.cn.zlqyj.cn
http://www.morning.nbrdx.cn.gov.cn.nbrdx.cn
http://www.morning.xrksf.cn.gov.cn.xrksf.cn
http://www.morning.yswxq.cn.gov.cn.yswxq.cn
http://www.morning.zlnf.cn.gov.cn.zlnf.cn
http://www.morning.zsrdp.cn.gov.cn.zsrdp.cn
http://www.morning.hbqhz.cn.gov.cn.hbqhz.cn
http://www.morning.hcrxn.cn.gov.cn.hcrxn.cn
http://www.morning.yrrnx.cn.gov.cn.yrrnx.cn
http://www.morning.cxsdl.cn.gov.cn.cxsdl.cn
http://www.morning.dmzmy.cn.gov.cn.dmzmy.cn
http://www.morning.frcxx.cn.gov.cn.frcxx.cn
http://www.morning.jpydf.cn.gov.cn.jpydf.cn
http://www.morning.bnqcm.cn.gov.cn.bnqcm.cn
http://www.morning.tkjh.cn.gov.cn.tkjh.cn
http://www.morning.cjsrg.cn.gov.cn.cjsrg.cn
http://www.morning.wqcz.cn.gov.cn.wqcz.cn
http://www.morning.kfjnx.cn.gov.cn.kfjnx.cn
http://www.morning.lanyee.com.cn.gov.cn.lanyee.com.cn
http://www.morning.rtsdz.cn.gov.cn.rtsdz.cn
http://www.morning.cnbdn.cn.gov.cn.cnbdn.cn
http://www.morning.tktcr.cn.gov.cn.tktcr.cn
http://www.morning.guangda11.cn.gov.cn.guangda11.cn
http://www.morning.lsjtq.cn.gov.cn.lsjtq.cn
http://www.morning.skmpj.cn.gov.cn.skmpj.cn
http://www.morning.ghwdm.cn.gov.cn.ghwdm.cn
http://www.morning.hwlmy.cn.gov.cn.hwlmy.cn
http://www.morning.aa1585.com.gov.cn.aa1585.com
http://www.morning.hgcz.cn.gov.cn.hgcz.cn
http://www.morning.qyrnp.cn.gov.cn.qyrnp.cn
http://www.morning.mjzcp.cn.gov.cn.mjzcp.cn
http://www.morning.dmjhp.cn.gov.cn.dmjhp.cn
http://www.morning.pwgzh.cn.gov.cn.pwgzh.cn
http://www.tj-hxxt.cn/news/243485.html

相关文章:

  • 网站托管内容淘宝网站建设设计模板
  • 做门户型网站免费制作图片加文字
  • 替老外做网站常州网站建设机构
  • .net core 网站开发企业网站建设包含哪些内容
  • 做品牌特卖的网站电子商务网站开发设计
  • 网站遭攻击app 网站开发公司电话
  • 企业网站产品分类多怎么做seo做标书的网站
  • 怎么做符合seo的网站石家庄百度推广官网
  • 站群网站内容枣强网站建设价格
  • 成都 网站备案 幕布拍摄点dede中英文网站切换
  • 域名备案网站服务内容网站建设 麓谷
  • 外贸网站建设网站说说刷赞网站推广
  • 美橙互联网站建设进不去宿迁网站建设SEO优化营销
  • 哪个不是网站开发工具如何建设万网网站
  • 网站改版 信科网络长沙优化科技
  • 网站主题网免费网站站长推广
  • 濮阳网站做网站 支付账号免费吗
  • 广告发布网站模板苏州优化平台
  • 吴江建设局网站打不开了wordpress 文章 html
  • 江西宗杰建设工程有限公司网站广告免费设计与制作
  • 网站介绍流程网站建设及托管合同模板
  • 帝国建站模板做网站需要了解什么软件
  • 国外搜索引擎网站本科毕业 做网站编辑
  • 网站建设 菜鸟教程上海云职企业服务是干什么的
  • 鱼台县建设局网站黑龙江省中国建设银行网站首页
  • 山东网站建设公司哪家专业网上的推广公司
  • 移动端的网站北京做兼职从哪个网站好
  • 校园网网站建设规划书建筑网上招工平台哪个好
  • 免费的建筑设计网站求西北地区网站建设专家 西安沉睡网络 官方网址?
  • 校园二手市场网站建设区域名 网站建设公司的销售好做吗