- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因为我是 VHDL 的初学者,所以互联网上的所有答案都不适合我。
我正在使用按钮和 LED 在 vhdl 中制作密码界面。我的程序按预期正确模拟。
基本上,我希望 LED 在输入错误密码时闪烁,但在输入正确密码时持续发光。您可以看到,这在模拟中有效。
SIMULATION IMAGE(模拟时先输入错误密码再输入正确密码)
在合成时,出现以下主要警告:
Optimizing unit <safehouse> ...
WARNING:Xst:1293 - FF/Latch <entry_pass.ncount_6> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_7> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
.
.
.
VHDL 代码是:
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity safehouse is
Port ( keyled : out STD_LOGIC_VECTOR(0 TO 4);
keypad : in STD_LOGIC_VECTOR(0 to 7);
clk : in STD_LOGIC );
end safehouse;
architecture safehouse of safehouse is
signal temp : std_logic_vector(0 to 7) := "00000000";
begin
entry_pass: process(clk,keypad,temp)
type integer_vector is array (0 to 3) of integer;
variable i : integer := 0;
constant passoriginal : integer_vector := (2,5,2,6);
variable passcode : integer_vector := (0,0,0,0);
variable dcount : integer := 0;
variable ncount : integer := 0;
begin
if (rising_edge(clk)) then
keyled(4) <= '1';
if i < 4 then
keyled(0) <= '1';
if (temp /= keypad) then
case keypad is
when "10001000" =>
passcode(i) := 1;
keyled(i+1) <= '1';
i := i + 1;
when "10000100" =>
passcode(i) := 2;
keyled(i+1) <= '1';
i := i + 1;
when "10000010" =>
passcode(i) := 3;
keyled(i+1) <= '1';
i := i + 1;
when "10000001" =>
passcode(i) := 10;
keyled(i+1) <= '1';
i := i + 1;
when "01001000" =>
passcode(i) := 4;
keyled(i+1) <= '1';
i := i + 1;
when "01000100" =>
passcode(i) := 5;
keyled(i+1) <= '1';
i := i + 1;
when "01000010" =>
passcode(i) := 6;
keyled(i+1) <= '1';
i := i + 1;
when "01000001" =>
passcode(i) := 11;
keyled(i+1) <= '1';
i := i + 1;
when "00101000" =>
passcode(i) := 7;
keyled(i+1) <= '1';
i := i + 1;
when "00100100" =>
passcode(i) := 8;
keyled(i+1) <= '1';
i := i + 1;
when "00100010" =>
passcode(i) := 9;
keyled(i+1) <= '1';
i := i + 1;
when "00100001" =>
passcode(i) := 12;
keyled(i+1) <= '1';
i := i + 1;
when "00011000" =>
passcode(i) := 14;
keyled(i+1) <= '1';
i := i + 1;
when "00010100" =>
passcode(i) := 0;
keyled(i+1) <= '1';
i := i + 1;
when "00010010" =>
passcode(i) := 15;
keyled(i+1) <= '1';
i := i + 1;
when "00010001" =>
passcode(i) := 13;
keyled(i+1) <= '1';
i := i + 1;
when others =>
keyled(4) <= '1';
end case;
temp <= keypad;
end if;
else
if passcode = passoriginal then
dcount := dcount + 1;
if dcount >= 50000000 then
keyled <= ('1','1','1','1','1');
dcount := 1;
ncount := ncount + 1;
if ncount >= 8 then
i := 0;
passcode := (0,0,0,0);
keyled <= ('0','0','0','0','1');
ncount := 1;
end if;
end if;
else
dcount := dcount + 1;
if dcount >= 50000000 then
if (ncount rem 2) = 0 then
keyled <= ('1','1','1','1','1');
else
keyled <= ('0','0','0','0','1');
end if;
dcount := 1;
ncount := ncount + 1;
if ncount >= 8 then
i := 0;
keyled <= ('1','0','0','0','1');
ncount := 1;
end if;
end if;
end if;
end if;
end if;
end process;
end safehouse;
我知道变量 ncount 正在被修剪,但我需要它。变量 ncount 用于创建 4 秒的延迟,使用变量 dcount 用于创建 0.5 秒的延迟。如果没有变量 ncount,我无法创建 4 秒的延迟。
完整的警告是:
WARNING:Xst:1710 - FF/Latch <keyled_4> (without init value) has a constant value of 1 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
Optimizing unit <safehouse> ...
WARNING:Xst:1293 - FF/Latch <entry_pass.ncount_6> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_7> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_8> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_11> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_9> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_10> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_14> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_12> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_13> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_17> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_15> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_16> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_20> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_18> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_19> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_23> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_21> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_22> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_26> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_24> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_25> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_29> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_27> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_28> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_30> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_31> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.dcount_26> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.dcount_29> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.dcount_27> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.dcount_28> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.dcount_30> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.dcount_31> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_3> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_4> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_5> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_6> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_7> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_8> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_9> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_10> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_11> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_12> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_13> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_14> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_15> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_16> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_17> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_18> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_19> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_20> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_21> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_22> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_23> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_24> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_25> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_26> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_27> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_28> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_29> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_30> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.i_31> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_4> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_3> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
WARNING:Xst:1896 - Due to other FF/Latch trimming, FF/Latch <entry_pass.ncount_5> has a constant value of 0 in block <safehouse>. This FF/Latch will be trimmed during the optimization process.
我使用的FPGA开发板是:Xilinx Spartan 6 XC6SLX9 TQG144。请帮助我。
最佳答案
我自己解决了这个问题。谢谢大家。
用信号替换变量并添加约束(它们的值范围)
给变量添加约束可能会解决问题。
在将变量(如 i、dcount、ncount)更改为信号后,我的程序能够在没有任何警告的情况下进行综合,这一事实让我认为问题出在 If 语句的 Scope 。由于对变量的赋值操作是在嵌套的 if 语句中进行的,因此合成器没有在所需范围内发现变量值的变化,并假定它具有常量值。信号的范围比变量好得多。
但是,由于我是初学者,所以我上面所说的原因可能是错误的。但这是解决我的问题的代码。
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity safehouse is
Port ( keyled : out STD_LOGIC_VECTOR(0 TO 4);
keypad : in STD_LOGIC_VECTOR(0 to 7);
clk : in STD_LOGIC );
end safehouse;
architecture safehouse of safehouse is
signal temp : std_logic_vector(0 to 7) := "00000000";
signal dcount : integer range 0 to 100000000 := 0;
signal ncount : integer range 0 to 10 := 0;
signal i : integer range 0 to 5;
begin
entry_pass: process(clk,keypad,temp,dcount,ncount,i)
type integer_vector is array (0 to 3) of integer;
constant passoriginal : integer_vector := (2,5,2,6);
variable passcode : integer_vector := (0,0,0,0);
begin
if (rising_edge(clk)) then
keyled(4) <= '1';
if i < 4 then
keyled(0) <= '1';
if (temp /= keypad) then
case keypad is
when "10001000" =>
passcode(i) := 1;
keyled(i+1) <= '1';
i <= i + 1;
when "10000100" =>
passcode(i) := 2;
keyled(i+1) <= '1';
i <= i + 1;
when "10000010" =>
passcode(i) := 3;
keyled(i+1) <= '1';
i <= i + 1;
when "10000001" =>
passcode(i) := 10;
keyled(i+1) <= '1';
i <= i + 1;
when "01001000" =>
passcode(i) := 4;
keyled(i+1) <= '1';
i <= i + 1;
when "01000100" =>
passcode(i) := 5;
keyled(i+1) <= '1';
i <= i + 1;
when "01000010" =>
passcode(i) := 6;
keyled(i+1) <= '1';
i <= i + 1;
when "01000001" =>
passcode(i) := 11;
keyled(i+1) <= '1';
i <= i + 1;
when "00101000" =>
passcode(i) := 7;
keyled(i+1) <= '1';
i <= i + 1;
when "00100100" =>
passcode(i) := 8;
keyled(i+1) <= '1';
i <= i + 1;
when "00100010" =>
passcode(i) := 9;
keyled(i+1) <= '1';
i <= i + 1;
when "00100001" =>
passcode(i) := 12;
keyled(i+1) <= '1';
i <= i + 1;
when "00011000" =>
passcode(i) := 14;
keyled(i+1) <= '1';
i <= i + 1;
when "00010100" =>
passcode(i) := 0;
keyled(i+1) <= '1';
i <= i + 1;
when "00010010" =>
passcode(i) := 15;
keyled(i+1) <= '1';
i <= i + 1;
when "00010001" =>
passcode(i) := 13;
keyled(i+1) <= '1';
i <= i + 1;
when others =>
keyled(4) <= '1';
end case;
temp <= keypad;
end if;
else
if passcode = passoriginal then
dcount <= dcount + 1;
if dcount >= 50000000 then
keyled <= ('1','1','1','1','1');
dcount <= 1;
ncount <= ncount + 1;
if ncount >= 8 then
i <= 0;
passcode := (0,0,0,0);
keyled <= ('0','0','0','0','1');
ncount <= 1;
end if;
end if;
else
dcount <= dcount + 1;
if dcount >= 50000000 then
if (ncount rem 2) = 0 then
keyled <= ('1','1','1','1','1');
else
keyled <= ('0','0','0','0','1');
end if;
dcount <= 1;
ncount <= ncount + 1;
if ncount >= 8 then
i <= 0;
keyled <= ('1','0','0','0','1');
ncount <= 1;
end if;
end if;
end if;
end if;
end if;
end process;
end safehouse;
这是我在这个网站上的第一个问题。我会赞成每一个回应。我有一个很好的经历。谢谢。
关于warnings - VHDL 警告 Xst :1293 FF/Latch has a constant value of 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45639064/
我正在尝试使用 flot 绘制 SQL 数据库中的数据图表,这是使用 php 收集的,然后使用 json 编码的。 目前看起来像: [{"month":"February","data":482},
我有一个来自 php 行的 json 结果,类似于 ["value"]["value"] 我尝试使用内爆函数,但得到的结果是“value”“value” |id_kategori|created_at
脚本 1 将记录 two 但浏览器仍会将 select 元素呈现为 One。该表单还将提交值 one。 脚本 2 将记录、呈现和提交 两个。我希望它们是同义词并做同样的事情。请解释它们为何不同,以及我
我的python字典结构是这样的: ips[host][ip] 每行 ips[host][ip] 看起来像这样: [host, ip, network, mask, broadcast, mac, g
在 C# 中 我正在关注的一本书对设置和获取属性提出了这样的建议: double pri_test; public double Test { get { return pri_test; }
您可能熟悉 enum 位掩码方案,例如: enum Flags { FLAG1 = 0x1, FLAG2 = 0x2, FLAG3 = 0x4, FLAG4 = 0x8
在一些地方我看到了(String)value。在一些地方value.toString() 这两者有什么区别,在什么情况下我需要使用哪一个。 new Long(value) 和 (Long)value
有没有什么时候 var result = !value ? null : value[0]; 不会等同于 var result = value ? value[0] : null; 最佳答案 在此处将
我正在使用扫描仪检测设备。目前,我的条形码的值为 2345345 A1。因此,当我扫描到记事本或文本编辑器时,输出将类似于 2345345 A1,这是正确的条形码值。 问题是: 当我第一次将条形码扫描
我正在读取 C# 中的资源文件并将其转换为 JSON 字符串格式。现在我想将该 JSON 字符串的值转换为键。 例子, [ { "key": "CreateAccount", "text":
我有以下问题: 我有一个数据框,最多可能有 600 万行左右。此数据框中的一列包含某些 ID。 ID NaN NaN D1 D1 D1 NaN D1 D1 NaN NaN NaN NaN D2 NaN
import java.util.*; import java.lang.*; class Main { public static void main (String[] args) thr
我目前正在开发我的应用程序,使其设计基于 Holo 主题。在全局范围内我想做的是工作,但我对文件夹 values、values-v11 和 values-v14. 所以我知道: values 的目标是
我遇到了一个非常奇怪的问题。 我的公司为我们的各种 Assets 使用集中式用户注册网络服务。我们一般通过HttpURLConnection使用请求方法GET向Web服务发送请求,通过qs设置参数。这
查询: UPDATE nominees SET votes = ( SELECT votes FROM nominees WHERE ID =1 ) +1 错误: You can't specify
如果我运行一段代码: obj = {}; obj['number'] = 1; obj['expressionS'] = 'Sin(0.5 * c1)'; obj['c
我正在为我的应用创建一个带有 Twitter 帐户的登录页面。当我构建我的项目时会发生上述错误。 values/strings.xml @dimen/abc_text_size_medium
我在搜索引擎中使用以下 View : CREATE VIEW msr_joined_view AS SELECT table1.id AS msr_id, table1.msr_number, tab
为什么验证会返回此错误。如何解决? ul#navigation li#navigation-3 a.current Value Error : background-position Too
我有一个数据名如下 import pandas as pd d = { 'Name' : ['James', 'John', 'Peter', 'Thomas', 'Jacob', 'Andr
我是一名优秀的程序员,十分优秀!