The uninitialized tag has no wiki summary.
3
votes
2answers
46 views
Handling uninitialized Strings in Java
here's part of a small program I'm doing as a homework assignment:
public Exam maxGrade() {
Node p = firstNode;
int max = 0;
String name;
while (p!=null) {
if ...
2
votes
4answers
73 views
C++ uninitialized array of class instances
I've been searching but couldn't find an answer to this. Is there a way to tell the new operator to not call the class constructors?
MyObject* array = new MyObject[1000];
This will call MyObject() ...
0
votes
2answers
80 views
Rails <top (required)>: uninitialized constant
I have a model called class App::BaseModel into a file called base_model.rb
Then I have a message.rb file which on the first line has the following:
class App::Message < App::BaseModel
When ...
0
votes
1answer
30 views
How do I initialize a local union variable?
I frequently define unions inside functions like this:
union
{
sometype A;
othertype B;
}name;
and then go around using them like:
name.A = smth;
name.B = smthelse;
and while it works in debug ...
3
votes
3answers
107 views
Uninitialized object leaked to another thread despite no code explicitly leaking it?
Let's see this simple Java program:
import java.util.*;
class A {
static B b;
static class B {
int x;
B(int x) {
this.x = x;
}
}
public static ...
0
votes
2answers
83 views
Use of uninitialized value in list assignment in Perl
When I run the code below, I get warning "Use of uninitialized value in list assignment":
local %ENV = ();
%ENV = foo(); //foo returns a hash
The dump result of %ENV is:
{
'KEY1' => '-',
...
0
votes
4answers
75 views
Dependent member initialization, when reorder is not possible
#include <iostream>
class BarParent
{
public:
int x;
virtual void fuz() = 0;
};
class BarChild : public BarParent
{
public:
BarChild(int new_x){x = new_x;}
...
-1
votes
5answers
58 views
Part of code not initialized
I have been in the process of re-learning Java in the last few days and have had no issues at to this point till now. I am trying to write a chunk of example code that prints a sentence then indexs ...
-1
votes
2answers
409 views
PHP Notice: Uninitialized string offset: 0 [closed]
I'm getting this error in my OpenCart log.
Says the error is on line 1 which is:
<?php if(isset($social_discount['name']) && $social_discount['name']!="") { ?>
Would highly appreciate ...
0
votes
2answers
77 views
Plsql Uninitialized collections
I have the following types defined into a spec of a package
type column_info is record (col_name varchar2(20), col_value varchar2(1000));
type c_info is varray(10) of column_info;
type table_info is ...
0
votes
0answers
94 views
Why am I getting uninitialized constant Headless when running example test from Headless site?
I'm trying to run the headless example test from https://github.com/leonid-shevtsov/headless but am getting an uninitialized constant Headless (NameError). I've tried this with watir-webdriver and ...
0
votes
2answers
50 views
What is causing these errors?
Use of uninitialized value $Xentr4 in concatenation (.) or string at Convert1.pl at line 6
I am getting below error
Error opening no such file or directory at Convert1.pl line 6"
...
0
votes
0answers
36 views
Visual C++ enable single warning, disable others
I'm trying to get the compiler warning C4700 (uninitialized variable used) to show in the compiler-log to improve code quality but I need to disable all other warnings.
The buildfile contains the ...
9
votes
2answers
181 views
Placement new and uninitialized POD members
Does the C++ standard guarantee that uninitialized POD members retain their previous value after a placement new?
Or more precisely, will the following assert always be satisfied according to C++11?
...
2
votes
2answers
102 views
C++ Pass over uninitialized variable
I need to ignore an uninitialized variable in C++ when I reach the end of my grid.
pointMapIt++;
float nextPointRow;
if (pointMapIt != grid.points.end())
{
...
-9
votes
1answer
87 views
How can “this” pointer be uninitialized inside a class? [closed]
I seem to be getting a really weird error. Basically, I have a class A that is meant to manage a disk cache for pixel data. From the main program, I create an object of A using:
A* obj = new A(...);
...
0
votes
2answers
150 views
Warning: Use of uninitialized value substitution
Why does Perl warn in this case
Use of uninitialized value `$new` in substitution (s///) at ./perl.pl line 8.
and not
Use of uninitialized value `$string` in substitution (s///) at ./perl.pl line ...
1
vote
2answers
111 views
Perl map function not working
i have a problem. This perl program should open all files and map them together, something similiar to paste command in unix system.
my @files;
for (@fileList ? @fileList : qw(-)) {
open ...
0
votes
5answers
125 views
How to skip while() loop's condition when object has not yet been initialized?
I'm getting NullPointerException because I try to check some value from an object that has yet to be initialized and value is still null value. The reason for this is that I'm waiting to initialize ...
2
votes
5answers
90 views
Why an uninitialized variable in C still produces output
I'm trying to figure out why even though the local variable i is never intialized in this C program, many systems will print out 0 1 2 3 4 5 6 7 8 9 Can someone explain why this is? Any help is ...
0
votes
1answer
81 views
Why am I receiving an uninitialized string offset in this php code?
I wrote a function for my coursework that will receive a string, a starting number and a length. The function will take the string and output the string that's created by taking all the letters ...
2
votes
1answer
156 views
how to access perl objects in threads
I hope someone of you is able to help me with my problem. I tried to access a global shared array of objects during a threaded computation and always get the error "use of uninitialized value" ...
2
votes
2answers
136 views
what exactly is the danger of an uninitialized pointer in C
I am trying get a handle on C as I work my way thru Jim Trevor's "Cyclone: A safe dialect of C" for a PL class. Trevor and his co-authors are trying to make a safe version of C, so they eliminate ...
0
votes
2answers
553 views
uninitialized local variable
This code compiles and runs though gives a Microsoft compiler error that I cant fix
warning C4700: uninitialized local variable '' used.
This is in the last line of the code, I think
#include ...
5
votes
5answers
150 views
How are the values of uninitialized variables determined?
Given a program of :
int main()
{
short myVariableName1; // stores from -32768 to +32767
short int myVariableName2; // stores from -32768 to +32767
signed short myVariableName3; // ...
1
vote
3answers
846 views
Java: “Local variable may not have been initialized” not intelligent enough?
Consider the following method:
void a ()
{
int x;
boolean b = false;
if (Math.random() < 0.5)
{
x = 0;
b = true;
}
if (b)
x++;
}
On x++ I get the ...
0
votes
0answers
45 views
how to use ftnchek on mac
I need to find the uninitialized variables in my fortran77 code. I have installed a fortran syntax checker ftnchek which is a static analyser for fortran 77. But i am unable to understand how to use ...
0
votes
0answers
169 views
Uninitialised value was created by a heap allocation OpenCV Kmeans
I'm doing a simple kmean clustering in openCV code. It runs successfully, but when I use valgrind to check it has memory problems:
==6982== Conditional jump or move depends on uninitialised ...
1
vote
2answers
59 views
In trying to write a script to permute values in a list, I'm getting an uninitialized value warning
I'm very unsure what is happening. For various lengths of @depths, the code generally works. However, throughout the output, at certain points the program barfs up complaints about use of an ...
1
vote
2answers
190 views
Creating a unique dummy object
I need to create a dummy object to mark an uninitialized element in a list (obviously, dictionary would have been a better choice, but I need a list because of heavy memory constraints).
I am ...
4
votes
2answers
1k views
Uninitialized Value in String 'eq' Perl
I'm getting a warning running one of my Perl scripts. The error is being through at a simple if statement where I'm testing if a string in an array is equal to another string. My coworker and I have ...
0
votes
1answer
2k views
Use of uninitialized value in concatenation (.) or string at mksmksmks.pl line 63
I have written a code and I am not sure what the error is, i am getting the error Use of uninitialized value in concatenation (.) or string at mksmksmks.pl line 63 and my code is as follows
for(my $j ...
15
votes
5answers
803 views
(Why) is using an uninitialized variable undefined behavior in C?
If I have:
unsigned int x;
x -= x;
it's clear that x should be zero after this expression, but everywhere I look, they say the behavior of this code is undefined, not merely the value of x (until ...
3
votes
1answer
150 views
Can accessing uninitialized values result in a performance hit?
I'm optimizing a matrix numerical hotspot.
Currently, I'm doing blocking and loop unrolling to improve performance. However, I deliberately avoid peeling the borders. Instead I let the blocking steps ...
0
votes
3answers
107 views
Uninitialized pointer object with inheritance
I am using an uninitialised pointer object to access the member function. It works and I know how it works. But when I derived that class with B and tried to access that member function, it gives ...
0
votes
1answer
62 views
Error while calling a function(pointer and vector)
Suppose that in the main I have a function a:
a(c);
,
and c is declared like
char* c.
The function a is actually like this:
void a(char* v)
{
v[0] = 1;
v[1] = 2;
}
Is this wrong?Because ...
2
votes
3answers
347 views
Perl script problems
The purpose of the script is to process all words from a file and output ALL words that occur the most. So if there are 3 words that each occur 10 times, the program should output all the words.
The ...
6
votes
2answers
190 views
given/when with undefined value
In the following code, I get an uninitialized value warning, but only in the second given/when example. Why is this?
#!/usr/bin/env perl
use warnings;
use 5.12.0;
my $aw;
given ( $aw ) {
when ( ...
0
votes
1answer
55 views
uninitialized constant ::ActiveRessource
I try to call an API. I just want use active resource so I make this code in a simple file .rb:
class Order < ActiveResource::Base
self.site = "http://localhost:3000/api/"
...
2
votes
2answers
115 views
Unable to initialize second item in a union
I have a union with the declaration:
union test_u
{
int i;
char *str;
};
I am trying trying to initialize a variable with data in the "second" field, using the code:
union test_u test = ...
1
vote
1answer
133 views
gcc: lack of warning about order of initialization in constructors
Should gcc to warn about the order of initialization of member variables a and b in class C? Basically object b is initialized and it's constructor invoked before object A. This means that b uses an ...
0
votes
1answer
86 views
how to call a database table in rails
im trying to reference one of my tables in my rails app but i get the following error
uninitialized constant UsersController::BadgesSashes
im in my user controller, and my table is named ...
0
votes
3answers
106 views
Uninitialized to Boolean C++
I am constructing a template structure and I need some trick to do the following:
I have a singly and two dimensional linked list, and I need first construct every node with no data in them after ...
0
votes
2answers
579 views
Potentially uninitialized local variable used? Why?
When I write this code and compile with /W4
long r;
__try { r = 0; }
__finally { }
return r;
I get:
warning C4701: potentially uninitialized local variable 'r' used
Why does this happen?
1
vote
1answer
113 views
mysql error: can't destroy an object that is created using factoryGirl
I was using mysql db to run rspec in rails. After I create an object using factoryGirl, I would like to destroy it so that the db looks clean for the next spec running.
Here is how i set up in my ...
1
vote
4answers
1k views
If a function returns no value, with a valid return type, is it okay to for the compiler to throw garbage?
If a function has a return type other than void, and the function does not return anything, then I guess the compiler returns an garbage value(possibly seen as an uninitialized value). It happens at ...
3
votes
2answers
363 views
Inconsistency in uninitialized boolean variable [duplicate]
Possible Duplicate:
Why do I see strange values when I print uninitialized variables?
Fun with uninitialized variables and compiler (GCC)
I want to know about a mysterious problem which I ...
2
votes
1answer
89 views
How can I reproduce this semi-random pixel background?
I've seen this kind of noisy background in some pre-release versions of browsers and operating systems:
It is not exactly random, i.e. it's not just white noise.
How do I achieve the same effect on ...
0
votes
1answer
91 views
Is it safe to set the elements of an unitialised array to 0 with CUBLAS / CUSPARSE operations?
When e.g. accumulating the results of different matrix-vector-multiplications (which is what you do in BLAS even when there's only one accumulating element), one formally starts with a zero vector. ...
0
votes
1answer
672 views
why do i get variable — is being used without being initialized error?
I want to use this program to write a hash table to a file
but i get
cannot convert parameter 1 from 'fpinfo' to 'const void *'
error at compile time
if i change struct fpinfo e; with struct ...
