Tagged Questions
The core tag has no wiki summary.
18
votes
11answers
1k views
Strings are objects in Java, so why don't we use 'new' to create them?
We normally create objects using the new keyword, like:
Object obj = new Object();
Strings are objects, yet we do not use new to create them:
String str = "Hello World";
Why is this? Can I make ...
16
votes
3answers
3k views
Toll free bridges
As a newcomer to iPhone development and Objective-C in general over the last few weeks I have come across numerous mentions of 'Toll free bridges' between CF and NS frameworks.
One particular example ...
13
votes
5answers
2k views
In python, is there a “pass” equivalent for a variable assignment
I am using a library function called get_count_and_price which returns a 2-tuple (count,price). In many places I use both time and price. However, in some I only need time or price. So right now, if I ...
13
votes
4answers
4k views
Extending core Ruby classes when in Rails
Rails provides a number of extensions to core Ruby classes. One of these is the to_sentence method, added to the Array class, allowing for the following:
['a', 'b', 'c'].to_sentence # gives: "a, b, ...
11
votes
4answers
988 views
Current Linux Kernel debugging techniques
A linux machine freezes few hours after booting and running software (including custom drivers). I'm looking a method to debug such problem. Recently, there has been significant progress in Linux ...
10
votes
5answers
149 views
What sorts of javascript/jquery methods do you routinely code into your sites?
I'm coding a core javascript object for my site, building in the common methods I use (and wrapping a few jQuery methods as well).
It's built like this:
var Core = {
baseUrl: '/',
lang: 'en-us',
...
8
votes
4answers
2k views
What is object graph in java?
Whenever I study Garbage Collector I hear the term object Graph. What does it mean exactly?
7
votes
2answers
230 views
What is the “undef” object of Ruby?
In the MRI implementation of gc.c I saw an object named undef. What is that undef object? What is its class? How can I access it? Is there any utility for it?
6
votes
1answer
324 views
What is a core dump file in Linux? What information does it provide?
What is a core dump file in linux? What all information does it provide?
6
votes
3answers
2k views
Why does a PNG image sometimes get blurry depending on its position in a view
I have noticed that when placing PNG images into a view using IB and/or animating those images to various positions around a view, the image can sometimes get a slight blur.
In most cases I can ...
6
votes
10answers
27k views
Tool for analyzing java core dump
If i make java core dump with gcore then what is the best tool to analyze it? I need to be able make jmap, jstack, jstat etc and also i need to see values of all variables.
Something that can take ...
5
votes
4answers
529 views
Convert Integer List to int array
Is there a way, to convert a List of Integers to Array of ints (not integer). Something like List to int []? Without looping through the list and manually converting the intger to int.
5
votes
2answers
3k views
Using core plot for iPhone, drawing date on x axis
I have available an array of dictionary that contains NSDate and NSNumber values. I wanted to plot date on X axis.
for plotting I need to supply xRanges to plot with some decimal values.I don't ...
5
votes
10answers
730 views
How to access the private variables of a class in its subclass?
This is a question I was asked in an interview: I have class A with private members and Class B extends A. I know private members of a class cannot be accessed, but the question is: I need to ...
5
votes
7answers
1k views
Which one is faster in java? 1. Math.max(a,b); 2. (a>b)?a:b
Hi
This was the question asked in my interview Which one is faster in java and why?
Math.max(a,b);
(a>b)?a:b
5
votes
2answers
6k views
ConcurrentHashMap vs Synchronized HashMap
What is the difference between using the wrapped class, SynchronizedMap, on a HashMap and ConcurrentHashMap?
Is it just being able to modify the hashmap while iterating it (ConcurrentHashMap)?
4
votes
2answers
56 views
How to print the last received signal in GDB?
when loading a core dump into GDB the reason why it crashed automatically is displayed. For example
Program terminated with signal 11, Segmentation fault.
Is there any way to get the information ...
4
votes
8answers
118 views
How am I able to call a method on a null object?
public class JavaPuzzler {
public static void main(String[] args) {
JavaPuzzler javaPuzzler = null;
System.out.println(javaPuzzler.get());
}
private static String get(){
...
4
votes
1answer
289 views
Core Location not requesting user permission
An application I was testing asked for user location on first device launch. I have uninstalled the application, deleted the build folder, and cleaned all targets, but core location never requests ...
4
votes
1answer
3k views
Inner shadow in Core Graphics
I want to do something similar to Photoshops inner shadow effect in Core Graphics. If I draw/fill a path with this effect, I want get something similar to the following:
4
votes
4answers
309 views
In java why not widen then box?
Hi
In java we can box and then widen. Why cant we widen and box?
For ex:
class WidenAndBox{
static void go(Long x) { }
public static void main(String [] args)
{
byte b=5;
go(b);
...
4
votes
2answers
81 views
Way to synchronize two cores in simulation
I have to build a dual-core processor simulator in C (it's actually a multilevel memory simulation, cache L1/L2, block substitution, etc). Thing is, I'm having a hard time figuring a way to ...
4
votes
5answers
12k views
How can I create a custom “pin-drop” animation using MKAnnotationView?
I have an instance of MKMapView and would like to use custom annotation icons instead of the standard pin icons supplied by MKPinAnnotationView. So, I've setup a subclass of MKAnnotationView called ...
4
votes
4answers
7k views
Add image to JAR Java
I'm using some imgages in JFrame, I have given a path to load image into panel of the frame, but when i made jar of the application its not dispalying images.
Where should I place the image?
How ...
4
votes
3answers
3k views
Treeset to order elements in descending order
Here is the piece of code that I have used for Java 5.0
TreeSet<Integer> treeSetObj = new TreeSet<Integer>( Collections.reverseOrder() ) ;
Collections.reverseOrder() is used to obtain a ...
4
votes
4answers
9k views
How do I prepend a directory the library path when loading a core file in gdb on Linux
I have a core file generated on a remote system that I don't have direct access to. I also have local copies of the library files from the remote system, and the executable file for the crashing ...
3
votes
2answers
93 views
how to force a c program to run on a particular core
Say I have the following c program:
#include <stdio.h>
int main()
{
printf("Hello world \n");
getchar();
return 0;
}
gcc 1.c -o helloworld
and, say I have a dual core machine:
...
3
votes
4answers
80 views
how to read object attribute dynamically in java?
Is there any way to read and print the object attribute dynamically(Java) ? for example if I have following object
public class A{
int age ;
String name;
float income;
}
public class B{
int ...
3
votes
2answers
136 views
C++ exception information from core file
I have a program that catches unknown exception. The code looks like this:
try {
...
} catch (...) {
abort(); // generates core file
}
I have a core file and the executable. Is there any ...
3
votes
4answers
650 views
ELF core file format
Short of digging through GDB source, where can I find documentation about the format used to create core files. The ELF specification leaves the core file format open, so I guess this should be part ...
3
votes
5answers
285 views
What is the correct way to force an app to core dump and quit?
I just came across some code which used the kill system call to send a SIGSEGV signal to an app. The rationale behind this was that this would force the app to core dump and quit. This seems so wrong ...
3
votes
2answers
424 views
After the Ruby interpreter segfaults, is it possible to get the Ruby backtrace from the corefile?
Note: I'm using a segfault that I encountered whilst using the libxml-ruby gem to illustrate the question, but I've since fixed my problem with said gem. What this question is really about is viewing ...
3
votes
2answers
95 views
questions on database updation
I have a web application that is implemented using java,jsp,servlets . whenever i have updates in the database table, the arraylist in my DAO should be updated. is there any better solutions.
...
3
votes
3answers
630 views
Force C# application to use a single core in a PC with a multicore processor
Hi guys this question might seem weird, but I'm using the Haptek People Putty player for my C# application and I've seen people say in the forums that it doesn't work well with a multicore processor. ...
3
votes
2answers
1k views
How can I get CPU load per core in C#?
How can I get CPU Load per core (quadcore cpu), in C#?
Thanks :)
3
votes
4answers
660 views
Efficiency of while(true) ServerSocket Listen
I am wondering if a typical while(true) ServerSocket listen loop takes an entire core to wait and accept a client connection (Even when implementing runnable and using Thread .start())
I am ...
3
votes
4answers
322 views
How to delete drupal's unused core modules correctly?
I want to delete the unused drupal modules like ( blog, Forum, taxonomy ...) but I'm worried if I delete the modules from the modules directory I might cause an error (now or in the future) .
is it ...
3
votes
1answer
351 views
Apple Core Foundation license
A short but sweet question: Can I use Apple's open source Core Foundation (CF classes) in a commercial product for free? That is, can I compile and link against the libraries without open sourcing my ...
3
votes
2answers
720 views
Does Snow Leopard put core dumps somewhere special?
I'm trying to debug a segfault on an application I'm working on (works on linux of course, so I can't use that as my fallback for debugging core dumps). Anyhow, I've set "ulimit -c unlimited" and ...
3
votes
3answers
680 views
Is there a way to force Core Animation to run it's thread?
Core Animation uses a background thread to do it's job. Now the problem is this: I have a heavy calculation going on in the main thread. Core Animation immediately freezes until that calculation is ...
3
votes
1answer
5k views
3
votes
2answers
169 views
Processor : How to get cache information about intel xeon
I'm looking for a way to have a precise architecture information about Xeon E5420. This processor have 4 cores and 2x6Mo cache, so 2 cores shares a 6Mo cache.
I'm working on machines that have 2 ...
3
votes
1answer
2k views
Delete Content of a File in Java
I'm writing bytes to temp.fls file. After completing the operation, I want to delete the last 256 bytes from the temp.fls file. How can I achieve this? Please help me.
Thanks in advance.
3
votes
4answers
4k views
How to read negative byte values in Java less than -128
I'm reading data from another system using the serial port. I'm reading packets of 133 bytes. The second byte is the packet number and the third byte is the negative value of the packet number.
The ...
3
votes
4answers
1k views
Meaning of serial port parameters in Java?
I'm a beginner in Java. I'm reading data from the serial port. I got
serialPort.setSerialPortParams(
9600, SerialPort.DATABITS_8, SerialPort.STOPBITS_1,
SerialPort.PARITY_NONE);
What is the ...
2
votes
7answers
79 views
Is there a super() in Object class also,if so where does it poin?
super() is implicitly placed in every constructor so that it acquires the methods mentioned in the parent class. The highest class in hierarchy is Object.
Question is where the super() of Object ...
2
votes
1answer
39 views
Core graphics rotate rectangle
With this formula I got angle
double rotateAngle = atan2(y,x)
with this code I can draw a rectangle
CGRect rect = CGRectMake(x,y , width ,height);
CGContextAddRect(context, rect);
...
2
votes
1answer
35 views
What are the addresses in core files?
This is part of my core file:
[New Thread 30385]
[New Thread 30383]
[New Thread 30381]
[New Thread 30379]
[New Thread 30378]
[New Thread 30270]
[New Thread 30268]
Core was generated by `test'.
...
2
votes
0answers
115 views
Coredump is getting truncated
I am setting
ulimit -c unlimited.
And in c++ program we are doing
struct rlimit corelimit;
if (getrlimit(RLIMIT_CORE, &corelimit) != 0) {
return -1;
}
corelimit.rlim_cur = ...
2
votes
3answers
43 views
Call a method when java applcation force close
I want to call a method when I terminating my Java application forcefully. I need to release resource I used in my application.
Please help me.
Thanks