Tagged Questions
The declare tag has no wiki summary.
10
votes
4answers
1k views
Javascript declare multiple variables
I want to declare multiple variables in a function
function foo() {
var src_arr = new Array();
var caption_arr = new Array();
var fav_arr = new Array();
var hidden_arr = new ...
10
votes
10answers
721 views
Why use constants in programming? [closed]
I've just been going back over a bit of C studying using Ivor Horton's Beginning C book. I got to the bit about declaring constants which seems to get mixed up with variables in the same sentence.
...
8
votes
4answers
256 views
why a[n] is accepted in c during runtime?
why can we do this in c?
int n;
scanf("%d",&n);
int a[n];
I thought array is located memory during load time but seems like the above example works during runtime.
Do I misunderstand any thing? ...
6
votes
2answers
104 views
Clojure: resolve declares symbol
I get some weird behaviour when checking if a symbol can be resolved.
user=> ok
CompilerException java.lang.RuntimeException: Unable to resolve symbol: ok in this context, ...
6
votes
4answers
209 views
C++ Variables - declare and define. Inheritance
Let's have a C++ object A. There are two variables (VAR1 and VAR2) in A accessible to its children.
Object B extends A and has one private variable VAR3 it can also access VAR1 and VAR2. Each instance ...
6
votes
7answers
2k views
Is there a strict definition for the words define, declare and assign?
I tend to use the words define, declare and assign interchangeably but this seems to cause offense to some people. Is this justified? Should I only use the word declare for the first time I assign to ...
5
votes
4answers
566 views
How to assign char array in struct inline?
I'm trying to do something like this:
struct SomeStruct {
const char *bytes;
const char *desc;
};
SomeStruct example = { { 0x10, 0x11, 0x12, 0x13 }, "10-13" };
Why isn't this working?
5
votes
4answers
7k views
SELECT INTO Variable in MySQL DECLARE causes syntax error?
I´d like to SELECT a single value into a variable. I´d tried to following:
DECLARE myvar INT(4);
-- immediately returns some syntax error.
SELECT myvalue
FROM mytable
WHERE anothervalue = 1;
...
4
votes
10answers
1k views
Defining const values in C
I have a C project where all code is organized in *.c/*.h file pairs, and I need to define a constant value in one file, which will be however also be used in other files. How should I declare and ...
3
votes
1answer
50 views
Devel::Declare removes line from script
I am trying to learn Devel::Declare so as to attempt to reimplement something like PDL::NiceSlice without source filters. I was getting somewhere when I noticed that it was removing the next line from ...
3
votes
5answers
130 views
C#: Delegate Cannot be Declared Static
When I try to compile the following:
public static delegate void MoveDelegate (Actor sender, MoveDirection args);
I receive, as an error: "The modifer 'static' is not valid for the this item."
...
3
votes
2answers
68 views
variable declared and not used in a for loop
This one has come up a couple times for Go here, but I think my experience is unique. Here are my codes.
type Stack []Weight
func newStack( size int, startSpread Spread ) Stack {
stack := ...
3
votes
7answers
260 views
Easy-to-learn language like Python, but which requires variable declaration?
Python is super easy to learn and understand; I like it for its use of keywords, lack of intricate syntax (opposite of perl, from what I've heard), and easy-to-use data structures. However, I can't ...
3
votes
5answers
215 views
declaring/initializing primitives equal to creating new objects
is declaring/initializing primitives the same as creating new objects? from what i know when we create primitives, we also creating wrapper classes for them. im implementing on java btw.
3
votes
1answer
544 views
how do php's declare(ticks) really work?
i created a signal handling class using pcntl_signal which now i want to use
for sigalrm
the problem i have is that my phpunit test for testing the signalclass works (where im only using declare ...
3
votes
6answers
1k views
Where is pow function defined and implemented in C?
I read that the pow(double, double) function is defined in "math.h" but I can't find its declaration.
Does anybody know where this function declared? And where is it implemented in C?
Reference:
...
2
votes
11answers
96 views
Java: When declaring objects or ints
When creating an object(or anything) in java, what is the difference between doing, for example,
Dog d = new Dog();
instead of doing
Dog d;
and then later, finishing it off(sometimes inside and ...
2
votes
2answers
61 views
How to declare struct A that contains instances of class B, where class B has functions that return struct A?
I tried my best to describe the goal in the title, but here it is in code:
struct Bar {
Foo one;
Foo two;
}
class Foo {
Bar function();
}
I know this won't work, but how would I ...
2
votes
3answers
92 views
Non member function can be declared multiple times while member function can only be declared once?
Non mumber function can be delcared multiple times while member function can only be declared once? Is this right ? My example seems saying yes.
But Why ?
class Base{
public:
int foo(int i);
...
2
votes
1answer
123 views
Recursively declare function in C language
got a question from adream307, I have no idea, what about yours?
I want to declare a function like this:
(we named this type of function as F)
the return type of F is "void"
the ...
2
votes
3answers
117 views
Declare a Structure and a Function Reference that use Each Other
I need to declare a (typedef'd) structure and a (typedef'd) function reference in pain old C. This is my code:
typedef void (*monitor_calback)(monitor_data*, short int, short int, void*);
typedef ...
2
votes
2answers
364 views
How to get list of declared functions with their data from php file?
I need to get list of functions with their contents (not only the function name) from php file. I tried to use regex but it has lots of limitations. it doesn't parse all types of functions. for ...
2
votes
4answers
471 views
How do I declare a pipe in a header file? (In C)
I have an assignment in which I need to declare a pipe in a header file. I really have no idea how to do this. It might be a really stupid question and I might be missing something obvious. If you ...
2
votes
2answers
535 views
PHP using Declare ? What is a tick?
Iam a little bit confused by php function declare.
What exactly is an single tick, i thought 1 tick = one line of code?
But if i use:
function myfunc() {
print "Tick";
}
...
2
votes
3answers
3k views
DllImport vs Declare in VB.NET
I notice in the MSDN documentation that there are multiple ways to declare a reference to a function in an external DLL from within a VB.NET program.
The confusing thing is that MSDN claims that ...
2
votes
5answers
2k views
How to call a Delphi DLL from VB6
Given the following Delphil DLL declaration
function csd_HandleData(aBuf: PChar; aLen: integer): integer; stdcall;
what would be the VB6 declaration to use it?
I've tried a variety of ...
1
vote
3answers
53 views
Declaring variable dynamically in VB.net
Is there way I can declare 70 different variables in a loop instead of declaring each one?
I wanted to do something like below:
For i As Integer = 0 To 70
Dim Para + i AS OracleParameter
Next
...
1
vote
2answers
36 views
declare variables in a pl/sql block
I am trying to follow this guide for creating pl/sql blocks and I am getting an ORA-00922:missing or invalid option on the SET orderNumberSEQ.... What am I doing wrong?
declare
orderNumberSEQ ...
1
vote
4answers
84 views
Must I declare my variables in PHP?
I usually set all my variables, even if they might not return anything. But now I wonder:
What harm will it make if I echo an empty variable?
eg.
<?php
$a = 'a';
$b = 'b';
if($a==$b)
{
$data = ...
1
vote
1answer
52 views
How to access a variable inside a function without the construction of a global?
<?php
declare(ticks=1);
function tick_handler()
{
print($GLOBALS['a']);
}
register_tick_function('tick_handler');
function test()
{
$a = 1;//This not print
$a = 2;//This not print
$a = 3;//This ...
1
vote
2answers
83 views
how can i declare variables via macros?
first of all, I'm using MS's Visual Studio and using C language.
Recently I need to declare variables with just one same statement which likes a macro.
However as you know, I can declare just one ...
1
vote
3answers
467 views
Using variables in Classic ASP parameterized SQL
I'm transitioning from dynamically generated (albeit heavily sanitized) SQL queries, to parameterized SQL, and I'm running into some trouble with the variable names.
I'm using Classic ASP, coded in ...
1
vote
3answers
449 views
Avoiding declaring private functions in class header files (C++)
(In C++) I have a class whose structure is declared in a header file. That header file is included in lots of source files, such that when I edit it I need to recompile lots of files.
The class has a ...
1
vote
2answers
2k views
How do I use variables in Oracle SQL Developer?
Below is an example of using variables in SQL Server 2000.
DECLARE @EmpIDVar INT
SET @EmpIDVar = 1234
SELECT *
FROM Employees
WHERE EmployeeID = @EmpIDVar
I want to do the exact same thing in ...
1
vote
1answer
424 views
Declare Variable Not In Function by postgres
I want to declare variable in postgres but not in function...
Declare
c varchar;
a integer;
b integer;
select b = count (*) from table
set a = 1
while a <= b
begin
select c = [c] from ...
1
vote
3answers
774 views
Is it possible to declare associative array in the function caller?
I want to declare associative array in the argument of function in - is it possible??
this code it's not working..
<a href="javascript:functionName(new ...
1
vote
5answers
386 views
How is this private variable “not declared in this scope”?
I'm currently trying to learn more about object oriented design in C++ (familiar with Java) and am running into some walls. The project I am trying to put together to learn these principles in a game ...
1
vote
2answers
691 views
Difference between declare, typeset and local variable [BASH]
When typing variables in BASH, what is the difference between declare and typeset? When used inside a function: what is the difference between declare and typeset and local?
The only difference I ...
1
vote
1answer
193 views
Common Lisp: deleting unreachable code
This is an easy one.
(let ((x))
(if (typep x 'null) "a" "b"))
generate a warning about unreachable code deletion. Presumably the compiler was smart enough to figure that it is only executed once ...
1
vote
1answer
92 views
How do I declare index=0 in .h file iPhone
// Declare index in Header.h
index=0;
- (IBAction)next {
index++;
// Set imageCount to as many images as are available
int imageCount=2;
if (index<=imageCount) {
NSString* ...
1
vote
1answer
218 views
Declare and <DllImport> in VB.NET have different results
I've been trying to call a login method of an unmanaged DLL.
If I use Declare the login fails.
Private Declare Function Login Lib "dllCore" (ByVal lpName As String, ByVal lpPassword As String) As ...
1
vote
1answer
215 views
How to declare ULARGE_INTEGER in c#?
Based upon this question How to declarate LARGE_INTEGER in C# with answer of:
[StructLayout(LayoutKind.Absolute, Size=8)]
struct LARGE_INTEGER
{
[FieldOffset(0)]public Int64 QuadPart;
...
1
vote
2answers
151 views
What went wrong with my Declare statement?
I've recently fixed a bug in a VB6 application, but I'm not sure, what exactly went wrong.
The offending part was a wrong API declaration of CreateEvent. This is, what API Viewer generated:
Declare ...
1
vote
5answers
2k views
variable-size type declared outside of any function
when declaring the two dimensional array
int random[height][width];
and then using it in a function
void populate(int random[height][width], int x, int y)
gives the error variable-size type ...
0
votes
2answers
45 views
is it right way in obj-c programming
i wonder if the way i programm is right way or not. can you help me?
@interface ViewController : UIViewController
{
UILabel *messageLabel;
}
@end
when i declare new object in .h and create in ...
0
votes
1answer
29 views
Mustache variable declaring
var page = {
pageCount : 3,
pageNum : [
//loop script to create '"num" : "x"'
]
};
var pageTemplate = '{{#pageNum}} <div id="page{{num}}" class="pages"> page {{num}} ...
0
votes
1answer
34 views
MySQL Dynamic query with declares
I would like to ask if it is possible to DECLARE variables in dynamic queries.
i.e.:
CREATE PROCEDURE `storedProcedureName`()
DETERMINISTIC
SQL SECURITY DEFINER
COMMENT ''
BEGIN
...
0
votes
2answers
153 views
C# - Must declare the scalar variable “@ms_id” - Error
I'm writing an web-app that keeps track of deadlines. With this app you have to be able to update records that are being saved in an SQL DB.
However I'm having some problem with my update in my ...
0
votes
4answers
79 views
Cant declare variable SQL
I've been trying to declare an integer variable but its just not working. Here is my query:
DECLARE @count INT
SET @count = 5633
SELECT count(matchid)
FROM `matches`
WHERE id = @count
Im ...
0
votes
5answers
95 views
why can't declare external variable on C# [closed]
I need to declare a variable inside an if statement. Then I will use it on outside. But as far as I know there is no external variables in C#. But I need to do this.
I have two classes both derived ...