焦点快报!多级时间轮定时器的原理及编程实现方案
一. 多级时间轮实现框架
上图是5个时间轮级联的效果图。中间的大轮是工作轮,只有在它上的任务才会被执行;其他轮上的任务时间到后迁移到下一级轮上,他们最终都会迁移到工作轮上而被调度执行。
多级时间轮的原理也容易理解:就拿时钟做说明,秒针转动一圈分针转动一格;分针转动一圈时针转动一格;同理时间轮也是如此:当低级轮转动一圈时,高一级轮转动一格,同时会将高一级轮上的任务重新分配到低级轮上。从而实现了多级轮级联的效果。
(资料图片仅供参考)
1.1 多级时间轮对象
多级时间轮应该至少包括以下内容:
每一级时间轮对象
轮子上指针的位置关于轮子上指针的位置有一个比较巧妙的办法:那就是位运算。比如定义一个无符号整型的数:
通过获取当前的系统时间便可以通过位操作转换为时间轮上的时间,通过与实际时间轮上的时间作比较,从而确定时间轮要前进调度的时间,进而操作对应时间轮槽位对应的任务。
为什么至少需要这两个成员呢?
定义多级时间轮,首先需要明确的便是级联的层数,也就是说需要确定有几个时间轮。
轮子上指针位置,就是当前时间轮运行到的位置,它与真实时间的差便是后续时间轮需要调度执行,它们的差值是时间轮运作起来的驱动力。
多级时间轮对象的定义
//实现5级时间轮范围为0~(2^8*2^6*2^6*2^6*2^6)=2^32structtvec_base{unsignedlongcurrent_index;pthread_tthincrejiffies;pthread_tthreadID;structtvec_roottv1;/*第一个轮*/structtvectv2;/*第二个轮*/structtvectv3;/*第三个轮*/structtvectv4;/*第四个轮*/structtvectv5;/*第五个轮*/};
1.2 时间轮对象
我们知道每一个轮子实际上都是一个哈希表,上面我们只是实例化了五个轮子的对象,但是五个轮子具体包含什么,有几个槽位等等没有明确(即struct tvec和struct tvec_root)。
#defineTVN_BITS6#defineTVR_BITS8#defineTVN_SIZE(1<此外,每一个时间轮都是哈希表,因此它的类型应该至少包含两个指针域来实现双向链表的功能。这里我们为了方便使用通用的struct list_head的双向链表结构。
1.3 定时任务对象
定时器的主要工作是为了在未来的特定时间完成某项任务,而这个任务经常包含以下内容:
任务的处理逻辑(回调函数)
任务的参数
双向链表节点
到时时间
定时任务对象的定义
typedefvoid(*timeouthandle)(unsignedlong);structtimer_list{structlist_headentry;//将时间连接成链表unsignedlongexpires;//超时时间void(*function)(unsignedlong);//超时后的处理函数unsignedlongdata;//处理函数的参数structtvec_base*base;//指向时间轮};在时间轮上的效果图:
1.4 双向链表
在时间轮上我们采用双向链表的数据类型。采用双向链表的除了操作上比单链表复杂,多占一个指针域外没有其他不可接收的问题。而多占一个指针域在今天大内存的时代明显不是什么问题。至于双向链表操作的复杂性,我们可以通过使用通用的struct list结构来解决,因为双向链表有众多的标准操作函数,我们可以通过直接引用list.h头文件来使用他们提供的接口。
struct list可以说是一个万能的双向链表操作框架,我们只需要在自定义的结构中定义一个struct list对象即可使用它的标准操作接口。同时它还提供了一个类似container_of的接口,在应用层一般叫做list_entry,因此我们可以很方便的通过struct list成员找到自定义的结构体的起始地址。
关于应用层的log.h, 我将在下面的代码中附上该文件。如果需要内核层的实现,可以直接从linux源码中获取。
1.5 联结方式
多级时间轮效果图:
二. 多级时间轮C语言实现
2.1 双向链表头文件: list.h
提到双向链表,很多的源码工程中都会实现一系列的统一的双向链表操作函数。它们为双向链表封装了统计的接口,使用者只需要在自定义的结构中添加一个struct list_head结构,然后调用它们提供的接口,便可以完成双向链表的所有操作。这些操作一般都在list.h的头文件中实现。
Linux源码中也有实现(内核态的实现)。他们实现的方式基本完全一样,只是实现的接口数量和功能上稍有差别。可以说这个list.h文件是学习操作双向链表的不二选择,它几乎实现了所有的操作:增、删、改、查、遍历、替换、清空等等。这里我拼凑了一个源码中的log.h函数,终于凑够了多级时间轮中使用到的接口。
#if!defined(_BLKID_LIST_H)&&!defined(LIST_HEAD)#define_BLKID_LIST_H#ifdef__cplusplusextern"C"{#endif/**Simpledoublylinkedlistimplementation.**Someoftheinternalfunctions("__xxx")areusefulwhen*manipulatingwholelistsratherthansingleentries,as*sometimeswealreadyknowthenext/preventriesandwecan*generatebettercodebyusingthemdirectlyratherthan*usingthegenericsingle-entryroutines.*/structlist_head{structlist_head*next,*prev;};#defineLIST_HEAD_INIT(name){&(name),&(name)}#defineLIST_HEAD(name)structlist_headname=LIST_HEAD_INIT(name)#defineINIT_LIST_HEAD(ptr)do{(ptr)->next=(ptr);(ptr)->prev=(ptr);}while(0)staticinlinevoid__list_add(structlist_head*entry,structlist_head*prev,structlist_head*next){next->prev=entry;entry->next=next;entry->prev=prev;prev->next=entry;}/***Insertanewelementafterthegivenlisthead.Thenewelementdoesnot*needtobeinitialisedasemptylist.*Thelistchangesfrom:*head→someelement→...*to*head→newelement→olderelement→...**Example:*structfoo*newfoo=malloc(...);*list_add(&newfoo->entry,&bar->list_of_foos);**@paramentryThenewelementtoprependtothelist.*@paramheadTheexistinglist.*/staticinlinevoidlist_add(structlist_head*entry,structlist_head*head){__list_add(entry,head,head->next);}/***Appendanewelementtotheendofthelistgivenwiththislisthead.**Thelistchangesfrom:*head→someelement→...→lastelement*to*head→someelement→...→lastelement→newelement**Example:*structfoo*newfoo=malloc(...);*list_add_tail(&newfoo->entry,&bar->list_of_foos);**@paramentryThenewelementtoprependtothelist.*@paramheadTheexistinglist.*/staticinlinevoidlist_add_tail(structlist_head*entry,structlist_head*head){__list_add(entry,head->prev,head);}staticinlinevoid__list_del(structlist_head*prev,structlist_head*next){next->prev=prev;prev->next=next;}/***Removetheelementfromthelistitisin.Usingthisfunctionwillreset*thepointersto/fromthiselementsoitisremovedfromthelist.Itdoes*NOTfreetheelementitselformanipulateitotherwise.**Usinglist_delonapurelisthead(likeintheexampleatthetopof*thisfile)willNOTremovethefirstelementfrom*thelistbutratherresetthelistasemptylist.**Example:*list_del(&foo->entry);**@paramentryTheelementtoremove.*/staticinlinevoidlist_del(structlist_head*entry){__list_del(entry->prev,entry->next);}staticinlinevoidlist_del_init(structlist_head*entry){__list_del(entry->prev,entry->next);INIT_LIST_HEAD(entry);}staticinlinevoidlist_move_tail(structlist_head*list,structlist_head*head){__list_del(list->prev,list->next);list_add_tail(list,head);}/***Checkifthelistisempty.**Example:*list_empty(&bar->list_of_foos);**@returnTrueifthelistcontainsoneormoreelementsorFalseotherwise.*/staticinlineintlist_empty(structlist_head*head){returnhead->next==head;}/***list_replace-replaceoldentrybynewone*@old:theelementtobereplaced*@new:thenewelementtoinsert**If@oldwasempty,itwillbeoverwritten.*/staticinlinevoidlist_replace(structlist_head*old,structlist_head*new){new->next=old->next;new->next->prev=new;new->prev=old->prev;new->prev->next=new;}/***Retrievethefirstlistentryforthegivenlistpointer.**Example:*structfoo*first;*first=list_first_entry(&bar->list_of_foos,structfoo,list_of_foos);**@paramptrThelisthead*@paramtypeDatatypeofthelistelementtoretrieve*@parammemberMembernameofthestructlist_headfieldinthelistelement.*@returnApointertothefirstlistelement.*/#definelist_first_entry(ptr,type,member)list_entry((ptr)->next,type,member)staticinlinevoidlist_replace_init(structlist_head*old,structlist_head*new){list_replace(old,new);INIT_LIST_HEAD(old);}/***list_entry-getthestructforthisentry*@ptr:the&structlist_headpointer.*@type:thetypeofthestructthisisembeddedin.*@member:thenameofthelist_structwithinthestruct.*/#definelist_entry(ptr,type,member)((type*)((char*)(ptr)-(unsignedlong)(&((type*)0)->member)))/***list_for_each-iterateoverelementsinalist*@pos:the&structlist_headtouseasaloopcounter.*@head:theheadforyourlist.*/#definelist_for_each(pos,head)for(pos=(head)->next;pos!=(head);pos=pos->next)/***list_for_each_safe-iterateoverelementsinalist,butdon"tdereference*posafterthebodyisdone(incaseitisfreed)*@pos:the&structlist_headtouseasaloopcounter.*@pnext:the&structlist_headtouseasapointertothenextitem.*@head:theheadforyourlist(notincludediniteration).*/#definelist_for_each_safe(pos,pnext,head)for(pos=(head)->next,pnext=pos->next;pos!=(head);pos=pnext,pnext=pos->next)#ifdef__cplusplus}#endif#endif/*_BLKID_LIST_H*/这里面一般会用到一个重要实现:container_of, 它的原理这里不叙述
2.2 调试信息头文件: log.h
这个头文件实际上不是必须的,我只是用它来添加调试信息(代码中的errlog(), log()都是log.h中的宏函数)。它的效果是给打印的信息加上颜色,效果如下:
log.h的代码如下:
#ifndef_LOG_h_#define_LOG_h_#include#defineCOL(x)"33[;"#x"m"#defineREDCOL(31)#defineGREENCOL(32)#defineYELLOWCOL(33)#defineBLUECOL(34)#defineMAGENTACOL(35)#defineCYANCOL(36)#defineWHITECOL(0)#defineGRAY"33[0m"#defineerrlog(fmt,arg...)do{printf(RED"[#ERROR:ToenySun:"GRAYYELLOW"%s:%d]:"GRAYWHITEfmtGRAY,__func__,__LINE__,##arg);}while(0)#definelog(fmt,arg...)do{printf(WHITE"[#DEBUG:ToenySun:"GRAYYELLOW"%s:%d]:"GRAYWHITEfmtGRAY,__func__,__LINE__,##arg);}while(0)#endif 2.3 时间轮代码: timewheel.c
/**毫秒定时器采用多级时间轮方式借鉴linux内核中的实现*支持的范围为1~2^32毫秒(大约有49天)*若设置的定时器超过最大值则按最大值设置定时器**/#include#include #include #include #include #include #include"list.h"#include"log.h"#defineTVN_BITS6#defineTVR_BITS8#defineTVN_SIZE(1< current_index>>(TVR_BITS+(N)*TVN_BITS))&TVN_MASK)typedefvoid(*timeouthandle)(unsignedlong);structtimer_list{structlist_headentry;//将时间连接成链表unsignedlongexpires;//超时时间void(*function)(unsignedlong);//超时后的处理函数unsignedlongdata;//处理函数的参数structtvec_base*base;//指向时间轮};structtvec{structlist_headvec[TVN_SIZE];};structtvec_root{structlist_headvec[TVR_SIZE];};//实现5级时间轮范围为0~(2^8*2^6*2^6*2^6*2^6)=2^32structtvec_base{unsignedlongcurrent_index;pthread_tthincrejiffies;pthread_tthreadID;structtvec_roottv1;/*第一个轮*/structtvectv2;/*第二个轮*/structtvectv3;/*第三个轮*/structtvectv4;/*第四个轮*/structtvectv5;/*第五个轮*/};staticvoidinternal_add_timer(structtvec_base*base,structtimer_list*timer){structlist_head*vec;unsignedlongexpires=timer->expires;unsignedlongidx=expires-base->current_index;#if1if((signedlong)idx<0)/*这里是没有办法区分出是过时还是超长定时的吧?*/{vec=base->tv1.vec+(base->current_index&TVR_MASK);/*放到第一个轮的当前槽*/}elseif(idx tv1.vec+i;}elseif(idx<1<<(TVR_BITS+TVN_BITS))/*第二个轮*/{inti=(expires>>TVR_BITS)&TVN_MASK;vec=base->tv2.vec+i;}elseif(idx<1<<(TVR_BITS+2*TVN_BITS))/*第三个轮*/{inti=(expires>>(TVR_BITS+TVN_BITS))&TVN_MASK;vec=base->tv3.vec+i;}elseif(idx<1<<(TVR_BITS+3*TVN_BITS))/*第四个轮*/{inti=(expires>>(TVR_BITS+2*TVN_BITS))&TVN_MASK;vec=base->tv4.vec+i;}else/*第五个轮*/{inti;if(idx>0xffffffffUL){idx=0xffffffffUL;expires=idx+base->current_index;}i=(expires>>(TVR_BITS+3*TVN_BITS))&TVN_MASK;vec=base->tv5.vec+i;}#else/*上面可以优化吧*/;#endiflist_add_tail(&timer->entry,vec);}staticinlinevoiddetach_timer(structtimer_list*timer){structlist_head*entry=&timer->entry;__list_del(entry->prev,entry->next);entry->next=NULL;entry->prev=NULL;}staticint__mod_timer(structtimer_list*timer,unsignedlongexpires){if(NULL!=timer->entry.next)detach_timer(timer);internal_add_timer(timer->base,timer);return0;}//修改定时器的超时时间外部接口intmod_timer(void*ptimer,unsignedlongexpires){structtimer_list*timer=(structtimer_list*)ptimer;structtvec_base*base;base=timer->base;if(NULL==base)return-1;expires=expires+base->current_index;if(timer->entry.next!=NULL&&timer->expires==expires)return0;if(NULL==timer->function){errlog("timer"stimeoutfunctionisnull");return-1;}timer->expires=expires;return__mod_timer(timer,expires);}//添加一个定时器staticvoid__ti_add_timer(structtimer_list*timer){if(NULL!=timer->entry.next){errlog("timerisalreadyexist");return;}mod_timer(timer,timer->expires);}/*添加一个定时器外部接口*返回定时器*/void*ti_add_timer(void*ptimewheel,unsignedlongexpires,timeouthandlephandle,unsignedlongarg){structtimer_list*ptimer;ptimer=(structtimer_list*)malloc(sizeof(structtimer_list));if(NULL==ptimer)returnNULL;bzero(ptimer,sizeof(structtimer_list));ptimer->entry.next=NULL;ptimer->base=(structtvec_base*)ptimewheel;ptimer->expires=expires;ptimer->function=phandle;ptimer->data=arg;__ti_add_timer(ptimer);returnptimer;}/**删除一个定时器外部接口***/voidti_del_timer(void*p){structtimer_list*ptimer=(structtimer_list*)p;if(NULL==ptimer)return;if(NULL!=ptimer->entry.next)detach_timer(ptimer);free(ptimer);}/*时间轮级联*/staticintcascade(structtvec_base*base,structtvec*tv,intindex){structlist_head*pos,*tmp;structtimer_list*timer;structlist_headtv_list;/*将tv[index]槽位上的所有任务转移给tv_list,然后清空tv[index]*/list_replace_init(tv->vec+index,&tv_list);/*用tv_list替换tv->vec+index*/list_for_each_safe(pos,tmp,&tv_list)/*遍历tv_list双向链表,将任务重新添加到时间轮*/{timer=list_entry(pos,structtimer_list,entry);/*structtimer_list中成员entry的地址是pos,获取structtimer_list的首地址*/internal_add_timer(base,timer);}returnindex;}staticvoid*deal_function_timeout(void*base){structtimer_list*timer;intret;structtimevaltv;structtvec_base*ba=(structtvec_base*)base;for(;;){gettimeofday(&tv,NULL);while(ba->current_index<=(tv.tv_sec*1000+tv.tv_usec/1000))/*单位:ms*/{structlist_headwork_list;intindex=ba->current_index&TVR_MASK;/*获取第一个轮上的指针位置*/structlist_head*head=&work_list;/*指针指向0槽时,级联轮需要更新任务列表*/if(!index&&(!cascade(ba,&ba->tv2,INDEX(0)))&&(!cascade(ba,&ba->tv3,INDEX(1)))&&(!cascade(ba,&ba->tv4,INDEX(2))))cascade(ba,&ba->tv5,INDEX(3));ba->current_index++;list_replace_init(ba->tv1.vec+index,&work_list);while(!list_empty(head)){void(*fn)(unsignedlong);unsignedlongdata;timer=list_first_entry(head,structtimer_list,entry);fn=timer->function;data=timer->data;detach_timer(timer);(*fn)(data);}}}}staticvoidinit_tvr_list(structtvec_root*tvr){inti;for(i=0;i vec[i]);}staticvoidinit_tvn_list(structtvec*tvn){inti;for(i=0;i vec[i]);}//创建时间轮外部接口void*ti_timewheel_create(void){structtvec_base*base;intret=0;structtimevaltv;base=(structtvec_base*)malloc(sizeof(structtvec_base));if(NULL==base)returnNULL;bzero(base,sizeof(structtvec_base));init_tvr_list(&base->tv1);init_tvn_list(&base->tv2);init_tvn_list(&base->tv3);init_tvn_list(&base->tv4);init_tvn_list(&base->tv5);gettimeofday(&tv,NULL);base->current_index=tv.tv_sec*1000+tv.tv_usec/1000;/*当前时间毫秒数*/if(0!=pthread_create(&base->threadID,NULL,deal_function_timeout,base)){free(base);returnNULL;}returnbase;}staticvoidti_release_tvr(structtvec_root*pvr){inti;structlist_head*pos,*tmp;structtimer_list*pen;for(i=0;i vec[i]){pen=list_entry(pos,structtimer_list,entry);list_del(pos);free(pen);}}}staticvoidti_release_tvn(structtvec*pvn){inti;structlist_head*pos,*tmp;structtimer_list*pen;for(i=0;i vec[i]){pen=list_entry(pos,structtimer_list,entry);list_del(pos);free(pen);}}}/**释放时间轮外部接口**/voidti_timewheel_release(void*pwheel){structtvec_base*base=(structtvec_base*)pwheel;if(NULL==base)return;ti_release_tvr(&base->tv1);ti_release_tvn(&base->tv2);ti_release_tvn(&base->tv3);ti_release_tvn(&base->tv4);ti_release_tvn(&base->tv5);free(pwheel);}/************demo****************/structrequest_para{void*timer;intval;};voidmytimer(unsignedlongarg){structrequest_para*para=(structrequest_para*)arg;log("%d",para->val);mod_timer(para->timer,3000);//进行再次启动定时器sleep(10);/*定时器依然被阻塞*///定时器资源的释放是在这里完成的//ti_del_timer(para->timer);}intmain(intargc,char*argv[]){void*pwheel=NULL;void*timer=NULL;structrequest_para*para;para=(structrequest_para*)malloc(sizeof(structrequest_para));if(NULL==para)return0;bzero(para,sizeof(structrequest_para));//创建一个时间轮pwheel=ti_timewheel_create();if(NULL==pwheel)return-1;//添加一个定时器para->val=100;para->timer=ti_add_timer(pwheel,3000,&mytimer,(unsignedlong)para);while(1){sleep(2);}//释放时间轮ti_timewheel_release(pwheel);return0;} 2.4 编译运行
peng@ubuntu:/mnt/hgfs/timer/4.timerwheel/2.多级时间轮$lsa.outlist.hlog.hmutiTimeWheel.ctoney@ubantu:/mnt/hgfs/timer录/4.timerwheel/2.多级时间轮$gccmutiTimeWheel.c-lpthreadtoney@ubantu:/mnt/hgfs/timer/4.timerwheel/2.多级时间轮$./a.out[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100[#DEBUG:ToenySun:mytimer:370]:100从结果可以看出:如果添加的定时任务是比较耗时的操作,那么后续的任务也会被阻塞,可能一直到超时,甚至一直阻塞下去,这个取决于当前任务是否耗时。
这个理论上是绝不能接受的:一个任务不应该也不能去影响其他的任务吧。但是目前没有对此问题进行改进和完善,以后有机会再继续完善吧。
编辑:黄飞
标签:
-
2023-06-28 13:24:34
焦点快报!多级时间轮定时器的原理及编程实现方案<
多级时间轮定时器的原理及编程实现方案-structlist可以说是一个万能的
-
2023-06-28 12:52:48
世界讯息:台教育部门推出男大学生服役“3+1方案” 国台办回应<
中新网6月28日电国台办28日举行例行发布会,发言人朱凤莲表示,所谓“3
-
2023-06-28 12:07:58
全国首个政企合作的电力双碳中心在津启用 天天简讯<
中国青年报客户端天津6月28日电(中青报·中青网记者胡春艳)2023天津
-
2023-06-28 11:33:53
国金证券给予普蕊斯增持评级,SMO行业先行者,复苏+规模效应共促业绩高增,目标价格为65.84元<
每经AI快讯,国金证券06月28日发布研报称,给予普蕊斯(301257 SZ,最
-
2023-06-28 11:08:33
360手机杀毒软件免费版_360手机杀毒软件<
360手机杀毒软件是360安全中心出品的一款免费的云安全杀毒手机杀毒软件
-
2023-06-28 13:24:34
焦点快报!多级时间轮定时器的原理及编程实现方案
多级时间轮定时器的原理及编程实现方案-structlist可以说是一个万能的
-
2023-06-28 12:52:48
世界讯息:台教育部门推出男大学生服役“3+1方案” 国台办回应
中新网6月28日电国台办28日举行例行发布会,发言人朱凤莲表示,所谓“3
-
2023-06-28 12:07:58
全国首个政企合作的电力双碳中心在津启用 天天简讯
中国青年报客户端天津6月28日电(中青报·中青网记者胡春艳)2023天津
-
2023-06-28 11:33:53
国金证券给予普蕊斯增持评级,SMO行业先行者,复苏+规模效应共促业绩高增,目标价格为65.84元
每经AI快讯,国金证券06月28日发布研报称,给予普蕊斯(301257 SZ,最
-
2023-06-28 11:08:33
360手机杀毒软件免费版_360手机杀毒软件
360手机杀毒软件是360安全中心出品的一款免费的云安全杀毒手机杀毒软件
-
2023-06-28 10:48:58
每日消息!吉县农商银行举办“感恩三周年 匠心礼相送”线上抽奖活动
“惠民农商行,健康人祖山”。6月26日,吉县农商银行“感恩三周年,匠
-
2023-06-28 10:27:28
【天天快播报】刚刚,200亿知名基金经理,去向曝光!
又有知名基金经理最新去向曝光。据基金君了解,6月刚刚从东方红资管离
-
2023-06-28 09:55:47
秋裤最早起源于哪个国家 关于秋裤的起源介绍
1、最早取得秋裤设计专利的,据说是加拿大人弗兰克·斯坦菲尔德,他在1
-
2023-06-28 09:15:35
超算互联网,算力网的骨干
随着科学技术飞跃发展,人类社会已进入信息时代的智能化阶段。智能化阶
-
2023-06-28 09:00:01
小商品城:6月27日融资买入1.34亿元,融资融券余额14.22亿元-焦点快播
6月27日,小商品城(600415)融资买入1 34亿元,融资偿还8757 63万元,
-
2023-06-28 08:29:45
易方达瑞安灵活配置混合型发起式证券投资基金基金经理变更公告|今日最新
1公告基本信息基金名称易方达瑞安灵活配置混合型发起式证券投资基金基
-
2023-06-28 07:38:05
有关端午节的古诗(有关中秋节的古诗)
来为大家解答以下的问题,关端午节的古诗,有关中秋节的古诗这个很多人
-
2023-06-28 07:06:09
金山办公:股东拟减持不超过0.25万股 视讯
6月28日,金山办公发布股份减持公告,股东CUIYAN拟减持公司股份不超过0
-
2023-06-28 05:55:07
环球即时看!婚姻法小三合法了_婚姻法 小三
1、那要看是否给了小三财产。2、如果夫妻一方婚内出轨把属于夫妻双方的
-
2023-06-28 05:01:44
镇江交通银行地址查询附近-镇江交通银行电话号码查询
本文内容是由小编为大家搜集关于镇江交通银行地址查询附近,以及镇江交
-
2023-06-28 02:33:46
法国巴黎股市CAC40指数27日上涨-世界报道
新华社快讯:法国巴黎股市CAC40指数27日报收于7215 58点,较前一交易日
-
2023-06-28 00:55:41
什么是饭圈_关于什么是饭圈的介绍
1、饭圈是一个网络用语,拼音是fànquān。2、指粉丝圈子的简称,另外
-
2023-06-27 22:33:36
信息:武林外传20年再聚首 时隔15年武林外传原班人马重聚
hello大家好,我是大学网网小航来为大家解答以上问题,武林外传20年再
-
2023-06-27 21:46:14
世界最资讯丨《重返未来1999》远旅心相推荐
《重返未来1999》最近非常火爆,《重返未来1999》远旅心相推荐也是大家
-
2023-06-27 21:07:48
思想是行动的先导和动力对吗 思想是行动的先导行动是思想的 全球微速讯
1、也有一种人,无论怎么想,就是不行动。2、还有一种人,想的和做的永
-
2023-06-27 20:46:30
排名全国前列!2022年新疆禁毒工作群众满意度达99.09% 快报
记者从自治区公安厅6月26日召开的新闻通气会上获悉:2022年以来,新疆
-
2023-06-27 20:03:08
广州双虹建材有限公司怎么样_广州双虹建材有限公司 热点评
广州双虹建材有限公司作为美国双虹(中国)建材有限公司在大陆授权子公
-
2023-06-27 19:00:53
扫图识别植物在线_扫图识别植物_全球热文
你们好,最近小品发现有诸多的小伙伴们对于扫图识别植物在线,扫图识别
-
2023-06-27 18:56:42
武汉首个“承诺可开工”保租房项目实现“多证齐发” 短讯
,该项目位于江岸区后湖街道,总建筑面积61758 45平方米,建成后可提供
-
2023-06-27 17:58:54
环球新消息丨汪全胜
1、汪全胜,男,1968年生,安徽桐城人,法学博士,山东大学威海法学院
-
2023-06-27 17:44:38
如何构建安全可信的人工智能?这场“对话”备受世界关注
2022年底,以ChatGPT为代表的人工智能大模型面世,昨天(26日),在山
-
2023-06-27 16:53:36
环球新动态:《烟雨江湖》厂狱支线任务攻略
《烟雨江湖》厂狱支线任务是游戏中一个流程比较长的支线,同时玩家需要
-
2023-06-27 16:43:06
世界看热讯:各早稻主产区多举措积极应对“三碰头”农业气象灾害
央视网消息:早稻是我国全年粮食收获的第二季。当前正是早稻抽穗扬花灌
-
2023-06-27 15:54:10
在《森林之子》中哪里可以找到以及如何驾驶高尔夫球车 头条
找到森林之子高尔夫球车似乎不是什么大事,但最新的更新允许您驾驶这些
-
2023-06-27 15:34:18
欧洲央行管委卡扎克斯 今日聚焦
欧洲央行管委卡扎克斯:绝不会在2024年上半年降息。暂停加息并不意味着