激昂白昼

文章
5
资源
0
加入时间
2年10月17天

自组装多孔薄膜用于高效有机小分子分离获进展

近日,中国科学院国家纳米科学中心、纳米科学卓越创新中心研究员唐智勇和副研究员李连山在具有刚性分子骨架的自组装多孔薄膜用于高效有机小分子分离的研究中取得新进展。相关研究成果Microporous membranes comprising conjugated polymers with rigid backbones enable ultrafast or...

php之session_start详解

1. session的工作原理(1)首先使用session_start()函数进行初始化(2)当执行PHP脚本时,通过使用$_SESSION超全局变量注册session变量。(3)当PHP脚本执行结束时,未被销毁的session变量会被自动保存在本地一定路径下的session库中(ps:这个路径可以通过php.ini文件中的session.save_path指定),下次浏览网页时可以加...

结构体优先队列排序

#include #include #include #include using namespace std;struct Node{ int x , y; Node(int a = 0 , int b = 0){ x = a , y = b; }};bool operator<(Node a , Node b){ if(a.x