问题标签 [resolution]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
22 回答
312940 浏览

php - 使用 PHP 获取屏幕分辨率

我需要找到访问我网站的用户屏幕的屏幕分辨率?

0 投票
2 回答
1385 浏览

prolog - 序言统一决议

为什么会这样:

这会产生堆栈溢出异常吗?

0 投票
3 回答
2212 浏览

image - 在 Matlab 下降低图像质量

问候,我正在尝试找到一种简单的方法来处理图像,以便我可以将其质量从 8 位降低到 3 位。

实现这一目标的最简单方法是什么?干杯

0 投票
2 回答
6619 浏览

height - 平均和/或最大视口高度是多少?

1024x768 分辨率屏幕上视口(可见区域)的平均和/或最大高度是多少?我想知道什么被认为是这个决议的“首当其冲”。

0 投票
1 回答
19807 浏览

prolog - Prolog 是 vs = 带列表

为什么这会失败L is [1,2,3,4],这有效:L = [1,2,3]

但是L is 1L = 1两者的工作方式相同。

0 投票
3 回答
4154 浏览

c# - 给定屏幕的有效分辨率列表?

有没有办法获得给定屏幕的所有有效分辨率?

我目前有一个包含所有有效屏​​幕的下拉列表(使用Screen.AllScreens)。当用户选择一个屏幕时,我想向他们展示第二个下拉列表,其中列出了该显示器的所有有效分辨率(不仅仅是当前分辨率)。

0 投票
2 回答
365 浏览

c++ - C++重载解析问题

我有以下结构:

当我尝试使用 E* 对 G<D> 类型的对象调用 Bar() 时,我收到以下编译时错误:

错误:没有用于调用 'G<D>::Bar(E*&)' 的匹配函数

注意:候选人是:virtual void D::Bar(F*)

如果我重命名 (virtual) void Bar(F*) 的声明,则代码可以正常编译并按预期工作。

用法:

1、成员函数的多个重载采用不同的参数有什么问题?

2、为什么编译器分不清它们的区别?

0 投票
5 回答
472 浏览

tortoisesvn - Merge tool capable of merging conflicting changes

I'm currently using TortoiseSVN to do a merge of two branches and I've found that its not smart enough to handle a specific merging senario.

In one branch I have a method as follows:

In the other branch I have the same method as follows:

TortoiseMerge notices that there is a conflict but only gives me the option of using one method signature or the other. However, what I really want is to merge it into a single method with all four parameters as follows:

The only way I can get around this conflict at the moment is to resolve the line so that both methods are present and then manually go to the file and correct it after the conflict has been resolved.

Is this just the way things are or is there a smarter merge tool out there somewhere that would be able to handle this scenario?

0 投票
2 回答
10360 浏览

wpf - WPF:自动控制大小

我想知道 WPF 中是否有一种自动控制大小。

我的意思是,一种根据用户的屏幕分辨率自动调整元素大小的方法,而无需在代码中定义它。

谢谢。

0 投票
6 回答
5348 浏览

iphone - 获取 iPhone 的相机分辨率?

有什么办法可以得到 iPhone 相机的分辨率?显然 3G 有 1200x1600,3GS 有 1500x2000,但是我如何从我的代码中获取这些值(不拍照)。我需要他们对相机预览进行一些仿射变换。

我可以检测硬编码这些值是 3G 还是 3GS,但这只是最后的手段。