Tagged Questions
The short tag has no wiki summary.
23
votes
5answers
830 views
Integer summing blues, short += short problem
Program in C#:
short a, b;
a = 10;
b = 10;
a = a + b; // Error : Cannot implicitly convert type 'int' to 'short'.
// we can also write this code by using Arithmetic Assignment Operator as given ...
10
votes
2answers
71 views
Short down text, but leave the filetype visible
How can I make this possible?
From this-is-a-very-long-filename.jpg to this-is-a-very-lo [...] .jpg.
I have searched Google for several minutes now but I can't find any solution to this. Do you know ...
10
votes
8answers
12k views
Really simple short string compression
Does anyone know of a really simple compression technique for strings up to about 255 characters in length (yes I'm compressing urls)?
Not concerned with strength of compression - I am looking for ...
10
votes
8answers
20k views
Primitive type 'short' - casting in Java
I have a question about the primitive type 'short' in Java. I am using JDK 1.6.
If I have the following:
short a = 2;
short b = 3;
short c = a + b;
the compiler does not want to compile - it ...
9
votes
5answers
4k views
Short Integers in Python
Python allocates integers automatically based on the underlying system architecture. Unfortunately I have a huge dataset which needs to be fully loaded into memory.
So, is there a way to force ...
8
votes
8answers
2k views
Cannot implicitly convert type 'int' to 'short'
I wrote the following small program to print out the Fibonacci sequence:
static void Main(string[] args)
{
Console.Write("Please give a value for n:");
Int16 n = ...
7
votes
4answers
223 views
Does using small datatypes (for example short instead of int) reduce memory usage?
My question is basically about how the C# compiler handles memory allocation of small datatypes. I do know that for example operators like add are defined on int and not on short and thus computations ...
7
votes
3answers
1k views
How to get long URL from short URL?
Using Ruby, how do I convert the short URLs (tinyURL, bitly etc) to the corresponding long URLs?
7
votes
7answers
7k views
Java's L number (long) specification question
It appears that when you type in a number in java, the compiler automatically reads it as an integer, which is why when you type in (long) 6000000000 (not in Integer's range) it will complain that ...
6
votes
3answers
3k views
How can I access a byte array as shorts in Java
I have a an array of byte, size n, that really represents an array of short of size n/2. Before I write the array to a disk file I need to adjust the values by adding bias values stored in another ...
5
votes
10answers
161 views
What happens when you cast from short to byte in C#?
I have the following code:
short myShort = 23948;
byte myByte = (byte)myShort;
Now I wasn't expecting myByte to contain the value 23948. I would have guessed that it would contain 255 (I believe ...
5
votes
6answers
502 views
Efficiently convert an unsigned short to a char*
What would be an efficient, portable way to convert a unsigned short to a char* (i.e. convert 25 to '25').
I'd like to avoid things such as getting (std::string) strings involved. Performance is ...
4
votes
3answers
115 views
When to Use a Data Type Other Than int?
I have a project in which I have many objects with many properties whose values will always be less than small numbers like 60, 100, and 255.
I'm aware that when doing math on bytes it is necessary ...
4
votes
4answers
321 views
On a 16-bit microprocessor, should I be using datatype short instead of int?
I've read that using short vs int is actually creating an inefficiency for the compiler in that it needs to use the int datatype regardless because of C integer promotion. Is this true for 16-bit ...
4
votes
2answers
1k views
Ruby on Rails - generating bit.ly style uuids
I'm trying to generate UUIDs with the same style as bit.ly urls like:
http://bit.ly/aUekJP
or cloudapp ones:
http://cl.ly/1hVU
which are even smaller
how can I do it?
I'm now using UUID gem for ...
4
votes
4answers
346 views
Java HashSet and data type Short, incompatibility?
Running this code:
public class SomeSet {
public static void main(String[] args) {
Set<Short> s = new HashSet<Short>();
for (short i = 0; i < 100; i++) {
...
4
votes
5answers
168 views
1-letter names for variables and functions in jQuery, JavaScript
I was looking at Twitter's static scripts and noticed that all variables and functions where just 1 character long, why and how do they do this? Has it something to do with performance? If so, why ...
4
votes
6answers
2k views
Is wchar_t just a typedef of unsigned short?
for example, does:
wchar_t x;
translate to:
unsigned short x;
4
votes
4answers
9k views
Convert short to byte[] in Java
How can I convert a short (2 bytes) to a byte array in Java, e.g.
short x = 233;
byte[] ret = new byte[2];
...
it should be something like this. But not sure.
((0xFF << 8) & x) >> ...
4
votes
7answers
7k views
3
votes
5answers
64 views
How can i convert bitset into short in c++?
if i have a bitset<16> bits(*iter) and a my short
how i can assign this bist to my short?
short myShort = ??bits??
It's possible to convert a bitset<16> to short?
3
votes
3answers
99 views
Putting a short into 2 bytes of string
So I'm making my own networking protocol for a online game, to save space each message (sent over TCP) is given a ID which is a short, 2 bytes, all messages sent from the server to the client and vice ...
3
votes
7answers
57 views
php, how to simplify a php script?
im not sure this is a good question to post but here is my issue. I have an if statement that is getting way too long and i was wondering if there is some other kind of syntax to shorten it out:
if ...
3
votes
4answers
505 views
Convert int to unsigned short java
I have written a .obj parser in java to modelize 3D objects on iPhone. I would like to export the data as a binary file, which must be as small as possible. I have plenty of indices that would fit a ...
3
votes
8answers
177 views
“val++” vs “val = val + 1” What is exact difference?
I created a basic console application to make such a test.
short val = 32767;
val++;
Console.WriteLine(val);
This gives me -32768 as an expected result
short val ...
3
votes
3answers
192 views
Puzzle by C type promotion from short to int
I have a question that needs guidance from any expert:
As a value with short type is passed as an argument to printf() function, it'll be automatically promoted to int type, that is why the printf() ...
3
votes
2answers
247 views
What is best compression scheme for very small data as1.66kBytes
this data is stored in an array (using C++) and is repitition of 125 bits each one varying from other also has 8 messages of 12 ASCII characters each at end.....
Please suggest that should i use ...
3
votes
13answers
505 views
What are some good, but short, programming books? [closed]
My personal definition of a "short" programming book is a book with less than ~500 pages, but YMMV. So if you have a different definition of a short book, feel free to post. If you can, please post ...
3
votes
1answer
114 views
In VB 2008, why does manipulation of shorts take longer than integers?
In this example:
Sub Button1_Click(sender As Object, ByVal e As EventArgs) Handles Button1.Click
Dim stopwatch1, stopwatch2 As New Stopwatch : Dim EndLoop As ULong = 10000
stopwatch1.Start()
...
3
votes
8answers
3k views
Which is better? To use short or int?
In Java or C++:
Which is better? To use short or int for numbers that go to the short Max value, from 0 to 65535 in the case of unsigned short in C++.
I heard something about using int is better by ...
3
votes
10answers
507 views
C++ struct size: 2+4+2+2+4 = 16 [closed]
Possible Duplicate:
Why isn’t sizeof for a struct equal to the sum of sizeof of each member?
Why is the sizeof(); of this structure 16 bytes? I'm compiling in g++.
struct ...
3
votes
2answers
2k views
standard way to convert to short path in .net
looking for the standard bug-proofed way to convert "long names" such as "C:\Documents and settings" to their equivalent "short names" "C:\DOCUME~1"
I need this to run an external process from ...
2
votes
1answer
85 views
Batch parameter %~s1 gives incorrect 8.3 short name
I'm trying to write a batch file in Windows XP that takes in a fully-qualified path name and outputs the 8.3 short name version...
@echo off
echo "%~s1"
I have come across one particular case where ...
2
votes
3answers
95 views
Please help me for using memcpy() in C
I have the following code:
void main()
{
char tmp[3]= "AB";
short k;
memcpy(&k,tmp,2);
printf("%x\n", k);
}
In ASCII, the hex value of char 'A' is 41 and the hex value of char ...
2
votes
1answer
34 views
Use short datetime in rails collection_select
This is a minor annoyance I can't find anything on.
I have a collection select on an Appointment object that shows the times of available appointments:
f.collection_select :appointment_id, ...
2
votes
1answer
70 views
Advantage of small data types
can somebody explain me what the advantage of small data types like char (8-Bit) or short (16-Bit) compared to int (32-Bit) (esp. in C/C++).
In my mind it does not bring any advantage esp. on a ...
2
votes
3answers
70 views
javascript: Set Property or return Values? (simple way)
i've created a short function to set and retrieve values from a object (> get points by name), but I'm not sure if my solution is that really smart.
What modifications do you recommend to perfect ...
2
votes
3answers
459 views
Converting 2 bytes to Short in C#
I'm trying to convert 2 bytes into an unsigned short so I can retrieve the actual server port value. I'm basing it off from this protocol specification under Reply Format. I tried using ...
2
votes
5answers
121 views
point of Byte and Short in Java (I've read the other questions)
My question is:
If I got it right from the Java disassembly, when I use
byte a=3,b=5;
System.out.println(a+b);
would actually use int instead of byte. Also all local memory slots are 4B just as ...
2
votes
4answers
568 views
byte array to short array and back again in java
I'm having some issues taking audio data stored in a byte array, converting it to a big-endian short array, encoding it, then changing it back into a byte array. Here is what I have. The original ...
2
votes
8answers
193 views
Should I trust that a short in C will be 2 bytes usually?
I have a large number that loops from 0 to 65535 (I chose 16 bits simply to have a nice cutting off point). I'm incrementing an int, and there's an if statement that checks if the int is 65536. If it ...
2
votes
2answers
76 views
Shorts in Android and Java
I have written some code that used strings to represent time such as "0620", but after careful thought I realised these could be parsed into shorts for comparison performance and storage gains.
In a ...
2
votes
1answer
80 views
Dicom US with multiple values
I'm currently trying to parse some files with my DICOM parser, and I've come across a problem with multiple US (usigned short) values in a Data element
(0018,1310) Aquisition Matrix:
0x55 0x53 ...
2
votes
1answer
356 views
How do I print a short as an unsigned short in Java
I have an array of short whose values range between 0 and the maximum value of a short. I scale the data (to display it as TYPE_USHORT) so that the resulting short values range between 0 and 65535. ...
2
votes
2answers
313 views
Unary minus on a short becomes an int?
In the following:
public class p
{
short? mID;
short? dID;
}
short id = p.mID ?? -p.dID.Value;
The compiler gives me the error:
Error 21 Cannot implicitly convert type 'int' to 'short'. An ...
2
votes
6answers
819 views
strange malloc behavior in C
I am trying to create a matrix with dynamic proportions and to initialize it
here is the code I am using to allocate memory and initialization:
int **matrix;
//mem allocation
...
1
vote
5answers
55 views
Splice first and last 3 digits off a short integer?
I have lots of variables in an array like this: short num = 7123;. The value is ALWAYS 4 digits long. How to go about turning this into a = 7; b = 123;?
All I can think of is converting to ...
1
vote
5answers
126 views
Short form for Java If statement
I know there is a way for writing java if statement in short form
if (city.getName()!=null){
name = city.getName();
}else{
name="N/A"
}
does anyone know how to write short form for above 5 lines ...
1
vote
2answers
67 views
Android: does short take really 2 bytes?
I am trying to make decision how to design my app.
I have about 300 instances of class just like this:
public class ParamValue {
protected String sValue = null;
protected short shValue = 0;
...
1
vote
2answers
55 views
Convert void *(void * const mAudioData) to Short * using Objective c?
i have AudioQueueBuffer's Audio Data which has void * const format. i want short array (short *) Audio data for my codec.
How to Convert void * const to Short * in Objective c??? type cast from ...