Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: MongoDB 中的 SQL 视图
我是 mongodb (java) 的新手。
我需要知道 mongodb 中是否存在诸如视图(关系)之类的东西?
是否可以创建视图 mongodb?
不。
...除非您将查询视为视图。
为什么以下两个操作在 Java 中会产生不同的结果,x = 31或者32会产生相同的结果x=3?
x = 31
32
x=3
int x=3; int b = (int) Math.pow(2,x); int c = 1<<x;
结果: