Tagged Questions
The deep tag has no wiki summary.
11
votes
9answers
399 views
Creating an easy to maintain copy constructor
Consider the following class:
class A {
char *p;
int a, b, c, d;
public:
A(const &A);
};
Note that I have to define a copy constructor in order to do a deep copy of "p". This has two ...
9
votes
2answers
674 views
Deep Object Comparison Delphi
Looking for a delphi library or code snippet that will do deep object comparison for me, preferably 2010 RTTI based as my objects don't inherit from TComponent. Does anyone know where I can find one, ...
4
votes
6answers
722 views
Java :deep copy, shallow copy, clone
I need clarification on the differences between deep copy, shallow copy, and clone in Java
4
votes
3answers
370 views
How to deep copy 2 dimensional array (different row sizes)
This is my first question in a community like this, so my format in question may not be very good sorry for that in the first place.
Now that my problem is I want to deep copy a 2 dimension array in ...
4
votes
3answers
947 views
Deep combine NSDictionaries
I need to merge two NSDictionarys into one provided that if there are dictionaries within the dictionaries, they are also merged.
More or less like jQuery's extend function.
4
votes
4answers
1k views
how to deep copy a class without marking it as serializable
I came across many questions on deep copy but non of them helped me
I have a class say
class A
{
...
public List<B> ListB;
....
}
where B is again another class which inturn may ...
4
votes
6answers
2k views
.Net Deep cloning - what is the best way to do that?
I need to perform deep cloning on my complex object model. What do you think is the best way to do that in .Net?
I thought about serializing / Deserializing
no need to mention that MemberwiseClone is ...
4
votes
5answers
2k views
How to deep clone interconnected objects in C#?
What is the best way to deep clone an interconnected set of objects? Example:
class A {
B theB; // optional
// ...
}
class B {
A theA; // optional
// ...
}
class Container {
...
2
votes
4answers
209 views
Deep cloning an object
I am using the function from Code project to deep clone my objects
http://www.codeproject.com/KB/tips/SerializedObjectCloner.aspx?msg=3984032#xx3984032xx
however for performance sensitive ...
2
votes
2answers
51 views
Generating an array of all property chains in a deep object in javascript
Hey all, long time read but first time poster. I've tried for the past few days trying to solve a logic problem and am having no luck was hoping some one who is good with recursion logic can help me ...
2
votes
2answers
2k views
Clone (deep copy) Entity LINQ
I would like to deep copy an Entity and I am looking for the best way to do it. I am also concerned about performances.
I plan to have all my entities implementing ICloneable where Clone() will ...
1
vote
2answers
66 views
Deeplinking in GWT (IE)
I want to support deeplinks in my gwt application. E.g. if a request is received like http://myhost/myapp/#deeplink123 I want to do something with "123" (as you know if http://myhost/myapp/deeplink123 ...
1
vote
1answer
59 views
Dynamic deep setting for a JavaScript object
Given a string for a object property path, how do I set this property dynamically.
Given this sample object:
var obj = {
a: {
b: [ { c: 'Before' } ]
}
};
It should be able to set ...
1
vote
3answers
489 views
Dozer deep propery mapping with custom converter
I have deep property mapping in my application (from domain objects to DTO, and the reverse), similar to next example:
...
<field>
<a>employee.id</a>
...
1
vote
3answers
217 views
how to deep copy object in java?
Is it ok to do like this in java?
public class CacheTree {
private Multimap<Integer, Integer> a;
private Integer b;
public void copy(CacheTree anotherObj) {
...
1
vote
1answer
115 views
Deep Zoom Aspect Ratio Returning Wrong Value
My MultiScaleImage is returning an aspect ratio of 1, when the image is a 2000x1500 png. What's even more odd, is that the xml metadata shows 1.33 in the aspect ratio tag, but then has a height and ...
1
vote
3answers
199 views
printing a deep list
guy im trying to write a function that prints a deep list.
for example
(1 (2 (3 4)) 6 9 (3 5))
it takes the list(or tree) as a parameter and just traverses it and prints it.
now i could just return ...
1
vote
2answers
235 views
Deep Cloning in java - Cloning only objects that are being constructed(new)
Problem for me is to implement clone for an object. This object A has it's members object B, which were not created by A. I want to clone A such that only object's created during construction of A to ...
1
vote
3answers
976 views
Deep Copy [] and ArrayList Java
I want to make a Deep Copy of some Object[] and ArrayList
How can i do that (without looping , and calling clone)
There aren't standard utils for doing this?
Thanks
João
0
votes
1answer
28 views
Doing a deep unrar of an archive using the unrar command in Linux
I use the following command to unrar all files in a rar-acrhive to a directory
unrar x -ep -y archive.rar folder
It works great and it ignores the directory structure inside the archive which is ...
0
votes
1answer
90 views
stack level too deep [closed]
SystemStackError in Admin/menu itemsController#update
usr/lib/ruby/gems/1.8/gems/activerecord-2.3.11/lib/active_record/autosave_association.rb:244:in `nested_records_changed_for_autosave?'
...
0
votes
3answers
71 views
Repeated call of copy constructor for same pointer-variable a memory leak?
I have a small question:
Foo *myFoo;
myFoo = new Foo(anotherFoo); // some deep copy of another object
myFoo = new Foo(yetAnotherFoo); // another deep copy of yet another object
Is this a ...
0
votes
0answers
142 views
context based nested mapping in Dozer
I have two sets of mappings, one context based and another plain one as shown below.
Set 1:
<mapping map-id="nonidParent">
<class-a>${Parent}</class-a>
...
0
votes
1answer
76 views
Howto invite friends to an application with an deep link to a page?
we develop an Facebook application and to encourage others to participate, we want to let the user sent an URL to its friends in order to get help. The URL should open the page with the application in ...
0
votes
1answer
71 views
Strip BB-type tags from string using PHP
I'm modifying a Drupal module called Quote. Basically I want to turn this:
"hello lorum ipsum [quote=randomuser1][quote=user2]a word.[/quote] Hi there![/quote] Hi random :P"
into this:
"hello lorum ...
0
votes
1answer
150 views
stack level too deep in new environment, works fine in existing
I am getting this error message when I move my Ruby on Rails server over to a new machine. I've installed Ruby on Rails the exact same way as I have in the past but am now getting this error. I've ...
0
votes
3answers
55 views
modifying cloned objects
I am trying to modify account objects but the changes do not seem to appear in the original list afterward. Perhaps someone can pinpoint an error.
see code below:
if(aBank.getAccount(number)!=null){
...
0
votes
3answers
271 views
Selecting a deeply nested link using xpath query
<body class="en-us"> <div id="wrapper">
<div id="content">
<div class="content-top">
<div class="content-bot">
<div id="profile-wrapper" ...
0
votes
1answer
303 views
Cakephp Containable error: Not associated with model
I am receiving this error when I am trying to contain more modules.
Model "Model" is not associated with model "Road" [CORE/cake/libs/model/behaviors/containable.php, line 363]
The way I am setting ...
0
votes
0answers
66 views
a solution for replace of deep freeze program
Hi
I want to make a solution for replace deep freeze solution that i use now .
I want to use programing with use another programs that these method not freeze system ( like ccleaner or something like ...
0
votes
2answers
152 views
linq related question
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Comparer.csd
{
class Program
{
/* Confusion is regarding how ToList() method works. ...
0
votes
1answer
50 views
How do I disactivate deep code analysis?
I think that by mistake I have enabled the "deep code analysis". How do I disable it?
0
votes
1answer
253 views
Programming Languages: Difference between ad-hoc binding and deep binding?
What is the difference between "ad-hoc" binding and "deep" binding?
0
votes
0answers
224 views
exception saving a deep cloned C# nhibernate object
I'm having a hard time trying to clone a complex C# object persisted with NHibernate.
The object has a deeply nested structure with lots of children objects organized in ILists, but it is completely ...
0
votes
1answer
99 views
Deep cloning of an object to a similar one in a different namespace in java
I have 2 web services declared in 2 different packages in java
package com.HelloWorld
@WebService(targetNamespace="http://www.xyz.com/Hello")
@SOAPBinding(parameterStyle = ParameterStyle.WRAPPED, ...
0
votes
2answers
1k views
How do I copy an arraylist from one class to another in Java?
I understand that in order to copy an arraylist and have two lists independent of one another you must use a deep copy (copying the objects from one list to another not just the references), however ...
0
votes
2answers
85 views
for loops execution [closed]
can the following loop be executed for(j=0;i=len-1;i>=0;i--;j++)
and if yes please tell me how the execution procedure?