Questions tagged «variables»

这是模棱两可的;只要适用,请使用特定的语言标记。变量是内存中的命名数据存储位置。使用变量,计算机程序可以存储数字,文本,二进制数据或任何这些数据类型的组合。它们可以在程序中传递。


2
在x86汇编中使用哪个可变大小(db,dw,dd)?
我是汇编的初学者,我不知道所有db,dw,dd的含义是什么。我试图编写一个执行1 + 1的小脚本,将其存储在变量中,然后显示结果。到目前为止,这是我的代码: .386 .model flat, stdcall option casemap :none include \masm32\include\windows.inc include \masm32\include\kernel32.inc include \masm32\include\masm32.inc includelib \masm32\lib\kernel32.lib includelib \masm32\lib\masm32.lib .data num db ? ; set variable . Here is where I don't know what data type to use. .code start: mov eax, 1 ; add 1 to eax register …

12
变量可能尚未初始化错误
当我尝试编译时: public static Rand searchCount (int[] x) { int a ; int b ; ... for (int l= 0; l<x.length; l++) { if (x[l] == 0) a++ ; else if (x[l] == 1) b++ ; } ... } 我得到这些错误: Rand.java:72: variable a might not have been initialized a++ ; ^ …


3
如何检查Vim变量?
在中.vimrc,有几行看起来像: let g:SuperTabDefaultCompletionType="<c-x><c-o>" 如何在Vim内部检查它们?达到此效果的方法: :echom &g:SuperTabDefaultCompletionType 但是该命令导致错误: E113: Unknown option: SuperTabDefaultCompletionType E15: Invalid expression: &g:SuperTabDefaultCompletionType 如何在Vim中检查这些变量?一些插件设置了一些我需要检查的默认值。
72 variables  vim 

4
用LESS覆盖Bootstrap变量
我整天都在进行调查,因为我认为花一些时间来学习定制Bootstrap的最佳实践是值得的。 我可以看到有一个友好的页面可用于从http://twitter.github.io/bootstrap/customize.html中有选择地自定义元素,但是我想拥有比这更多的控制权而不接触原始的引导程序源文件。 首先,我基本上想测试一下将网格从12列更改为16列的方法,为此,我创建了自己的变量less文件,并添加了@gridColumns:16;。仅将其导入到此文件中,并在bootstrap.less内部导入此自定义项,如下所示。 // Core variables and mixins @import "variables.less"; // Modify this for custom colors, font-sizes, etc @import "mixins.less"; **@import "../custom-variables.less"; //Override variables** 然后,使用WinLess,我编译了bootstrap.less文件,以使用覆盖的变量import调用获取新的bootstrap.css,并将CSS与html文件链接在一起,但是网格不会更改为16列。 谁能指出我做错了吗?

10
如何让程序等待javascript中的变量更改?
我想强制JavaScript程序在其执行的某些特定点等待,直到变量已更改。有办法吗?我已经找到了一个称为“叙述性JavaScript”的扩展,该扩展迫使程序等待事件发生。有没有办法创建一个新事件,例如一个类似于onclick事件的“变量更改事件”。

4
接口实现中的静态变量是什么意思?
在接口的实现中定义时,我不太了解静态变量。在方法中,我确实了解它们与局部变量的区别,但在直接在实现中定义时则没有区别。 看这些例子。这两者实际上有什么区别? #include "MyClass.h" @implementation MyClass int myInt; ... @end 和: #include "MyClass.h" @implementation MyClass static int myInt; ... @end myInt在两种情况下都对所有方法可见,并且如果我解释了我正确运行的测试,myInt则对于两种不同的类实例,在两种情况下都将是相同的变量。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.